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.2 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 JunglePotion = {
id: 0,
name: 'Jungle Potion',
members: true,
difficulty: 'Novice',
length: 'Short - Medium',
requirements: [new Requirement_1.LevelRequirement('Herblore', 3, false)],
questPoints: 1,
startLocation: '',
description: '',
steps: [],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: 'junglePotion',
url: 'https://oldschool.runescape.wiki/w/Jungle_Potion',
series: 'Karamja',
age: '',
difficultyLevel: 'Novice',
officialDifficulty: 'Novice',
officialLength: 'Short - Medium',
officialAge: '',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [
{ skill: Skill_1.Skill.Herblore, amount: 775 }
],
questPoints: 1,
items: [],
areas: [],
unlocks: [],
lamps: [],
points: [],
pets: [],
},
};
exports.default = JunglePotion;