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
53 lines (52 loc) • 1.47 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 agilityRequirement = {
skillName: 'agility',
level: 35,
boostable: true,
type: Requirement_1.RequirementType.Level,
description: '',
};
const HorrorFromTheDeep = {
id: 0,
name: 'Horror from the Deep',
members: true,
difficulty: 'Experienced',
length: 'Short',
requirements: [agilityRequirement],
questPoints: 2,
startLocation: '',
description: '',
steps: [],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: 'horrorFromTheDeep',
url: 'https://oldschool.runescape.wiki/w/Horror_from_the_Deep',
series: 'Fremennik',
age: '',
difficultyLevel: 'Experienced',
officialDifficulty: 'Experienced',
officialLength: 'Short',
officialAge: '',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [
{ skill: Skill_1.Skill.Magic, amount: 4662 },
{ skill: Skill_1.Skill.Ranged, amount: 4662.5 },
{ skill: Skill_1.Skill.Strength, amount: 4662.5 },
],
questPoints: 2,
items: [],
areas: [],
unlocks: [],
lamps: [],
points: [],
pets: [],
},
};
exports.default = HorrorFromTheDeep;