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
52 lines (51 loc) • 1.62 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Quest_1 = require("../Quest");
const Requirement_1 = require("../../Requirement");
const Skill_1 = require("../../account/Skill");
const InAidOfTheMyreque = {
id: 0,
name: 'In Aid of the Myreque',
members: true,
difficulty: 'Intermediate',
length: 'Long',
requirements: [
new Requirement_1.QuestRequirement('In Search of the Myreque'),
new Requirement_1.LevelRequirement('Crafting', 25, false),
new Requirement_1.LevelRequirement('Mining', 15, false),
new Requirement_1.LevelRequirement('Magic', 7, false),
],
questPoints: 2,
startLocation: '',
description: '',
steps: [],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: 'inAidOfTheMyreque',
url: 'https://oldschool.runescape.wiki/w/In_Aid_of_the_Myreque',
series: 'Myreque',
age: '',
difficultyLevel: 'Intermediate',
officialDifficulty: 'Intermediate',
officialLength: 'Long',
officialAge: '',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [
{ skill: Skill_1.Skill.Attack, amount: 2000 },
{ skill: Skill_1.Skill.Crafting, amount: 2000 },
{ skill: Skill_1.Skill.Defence, amount: 2000 },
{ skill: Skill_1.Skill.Strength, amount: 2000 },
],
questPoints: 2,
items: [],
areas: [],
unlocks: [],
lamps: [],
points: [],
pets: [],
},
};
exports.default = InAidOfTheMyreque;