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

46 lines (45 loc) 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Skill_1 = require("../../account/Skill"); const DragonSlayerII = { id: 0, // Assign a unique ID if available name: 'Dragon Slayer II', members: true, difficulty: 'Grandmaster', length: 'Very long', requirements: [], // Quests: Legends' Quest, Dream Mentor, A Tail of Two Cats, Animal Magnetism, Ghosts Ahoy, Bone Voyage, Client of Kourend. Skill: quest 200 questPoints: 5, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: 'dragonSlayerII', url: 'https://oldschool.runescape.wiki/w/Dragon_Slayer_II', series: 'Dragonkin', age: '', difficultyLevel: 'Grandmaster', officialDifficulty: 'Grandmaster', officialLength: 'Very long', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [ { skill: Skill_1.Skill.Agility, amount: 15000 }, { skill: Skill_1.Skill.Mining, amount: 18000 }, { skill: Skill_1.Skill.Smithing, amount: 25000 }, { skill: Skill_1.Skill.Thieving, amount: 15000 }, ], questPoints: 5, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = DragonSlayerII;