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

44 lines (43 loc) 1.26 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const CabinFever = { id: 0, // Assign a unique ID if available name: "Cabin Fever", members: true, difficulty: 'Experienced', length: 'Medium', requirements: [], // Quests: Pirate's Treasure, Rum Deal, Priest in Peril. Skills: Agility 42, Crafting 45, Smithing 50, Ranged 40 questPoints: 2, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: "cabinFever", url: 'https://oldschool.runescape.wiki/w/Cabin_Fever', series: 'Pirate', age: '', difficultyLevel: 'Experienced', officialDifficulty: 'Experienced', officialLength: 'Medium', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [ { skill: 'Agility', amount: 7000 }, { skill: 'Crafting', amount: 7000 }, { skill: 'Smithing', amount: 7000 }, ], questPoints: 2, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = CabinFever;