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

46 lines (45 loc) 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Skill_1 = require("../../account/Skill"); const AnimalMagnetism = { id: 0, // Assign a unique ID if available name: 'Animal Magnetism', members: true, difficulty: 'Intermediate', length: 'Medium - Long', requirements: [], // Quests: The Restless Ghost, Ernest the Chicken, Priest in Peril. Skills: Slayer 18, Crafting 19, Ranged 30, Woodcutting 35, Prayer 31 questPoints: 1, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: 'animalMagnetism', url: 'https://oldschool.runescape.wiki/w/Animal_Magnetism', series: null, age: '', difficultyLevel: 'Intermediate', officialDifficulty: 'Intermediate', officialLength: 'Medium - Long', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [ { skill: Skill_1.Skill.Crafting, amount: 1000 }, { skill: Skill_1.Skill.Fletching, amount: 1000 }, { skill: Skill_1.Skill.Slayer, amount: 1000 }, { skill: Skill_1.Skill.Woodcutting, amount: 2500 }, ], questPoints: 1, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = AnimalMagnetism;