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.65 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Requirement_1 = require("../../Requirement"); const SongOfTheElves = { id: 0, name: 'Song of the Elves', members: true, difficulty: 'Grandmaster', length: 'Very long', requirements: [ new Requirement_1.QuestRequirement('Mourning\'s End Part II'), new Requirement_1.LevelRequirement('Agility', 70, false), new Requirement_1.LevelRequirement('Construction', 70, false), new Requirement_1.LevelRequirement('Farming', 70, false), new Requirement_1.LevelRequirement('Herblore', 70, false), new Requirement_1.LevelRequirement('Hunter', 70, false), new Requirement_1.LevelRequirement('Mining', 70, false), new Requirement_1.LevelRequirement('Smithing', 70, false), new Requirement_1.LevelRequirement('Woodcutting', 70, false), ], questPoints: 4, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: 'songOfTheElves', url: 'https://oldschool.runescape.wiki/w/Song_of_the_Elves', series: 'Elf', age: '', difficultyLevel: 'Grandmaster', officialDifficulty: 'Grandmaster', officialLength: 'Very long', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [], questPoints: 2, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = SongOfTheElves;