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.25 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Requirement_1 = require("../../Requirement"); const TheGiantDwarf = { id: 0, name: 'The Giant Dwarf', members: true, difficulty: 'Intermediate', length: 'Medium', requirements: [ new Requirement_1.LevelRequirement('Firemaking', 16, false), new Requirement_1.LevelRequirement('Thieving', 14, false), new Requirement_1.LevelRequirement('Crafting', 14, false), ], questPoints: 2, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: 'theGiantDwarf', url: 'https://oldschool.runescape.wiki/w/The_Giant_Dwarf', series: 'Rise of the Red Axe', age: '', difficultyLevel: 'Intermediate', officialDifficulty: 'Intermediate', officialLength: 'Medium', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [], questPoints: 2, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = TheGiantDwarf;