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

45 lines (44 loc) 1.43 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Skill_1 = require("../../account/Skill"); const DarknessOfHallowvale = { id: 0, // Assign a unique ID if available name: 'Darkness of Hallowvale', members: true, difficulty: 'Intermediate', length: 'Very long', requirements: [], // Quests: In Aid of the Myreque. Skills: Construction 5, Mining 20, Thieving 22, Agility 26, Crafting 32, Magic 33, Strength 40 questPoints: 2, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: 'darknessOfHallowvale', url: 'https://oldschool.runescape.wiki/w/Darkness_of_Hallowvale', series: 'Myreque', age: '', difficultyLevel: 'Intermediate', officialDifficulty: 'Intermediate', officialLength: 'Very long', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [ { skill: Skill_1.Skill.Agility, amount: 7000 }, { skill: Skill_1.Skill.Construction, amount: 2000 }, { skill: Skill_1.Skill.Thieving, amount: 6000 }, ], questPoints: 2, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = DarknessOfHallowvale;