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.56 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const Quest_1 = require("../Quest");
const Requirement_1 = require("../../Requirement");
const Skill_1 = require("../../account/Skill");
const InSearchOfTheMyreque = {
id: 0,
name: 'In Search of the Myreque',
members: true,
difficulty: 'Intermediate',
length: 'Short',
requirements: [
new Requirement_1.QuestRequirement('Nature Spirit'),
new Requirement_1.LevelRequirement('Agility', 25, false),
],
questPoints: 2,
startLocation: '',
description: '',
steps: [],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: 'inSearchOfTheMyreque',
url: 'https://oldschool.runescape.wiki/w/In_Search_of_the_Myreque',
series: 'Myreque',
age: '',
difficultyLevel: 'Intermediate',
officialDifficulty: 'Intermediate',
officialLength: 'Short',
officialAge: '',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [
{ skill: Skill_1.Skill.Attack, amount: 600 },
{ skill: Skill_1.Skill.Crafting, amount: 600 },
{ skill: Skill_1.Skill.Defence, amount: 600 },
{ skill: Skill_1.Skill.Hitpoints, amount: 600 },
{ skill: Skill_1.Skill.Strength, amount: 600 },
],
questPoints: 2,
items: [],
areas: [],
unlocks: [],
lamps: [],
points: [],
pets: [],
},
};
exports.default = InSearchOfTheMyreque;