UNPKG

osrs-tools

Version:

A JavaScript package to provide JSON data for all current Old School RuneScape quests. This package aims to help junior software developers create tools related to Old School RuneScape. It's a work in progress, and issues should be reported to jamescer@ha

51 lines (50 loc) 1.3 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Requirement_1 = require("../../Requirement"); const attackRequirement = { skillName: 'attack', level: 20, boostable: false, type: Requirement_1.RequirementType.Level, description: '', }; const HolyGrail = { id: 0, name: 'Holy Grail', members: true, difficulty: 'Intermediate', length: 'Medium', requirements: [attackRequirement], questPoints: 2, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: 'holyGrail', url: 'https://oldschool.runescape.wiki/w/Holy_Grail', series: 'Camelot (#2)', age: '', difficultyLevel: 'Intermediate', officialDifficulty: 'Intermediate', officialLength: 'Medium', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [ { skill: 'Defence', amount: 15300 }, { skill: 'Prayer', amount: 11000 }, ], questPoints: 2, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = HolyGrail;