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

43 lines (42 loc) 1.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Quest_1 = require("../Quest"); const Skill_1 = require("../../account/Skill"); const Contact = { id: 0, // Assign a unique ID if available name: "Contact!", members: true, difficulty: 'Master', length: 'Medium', requirements: [], // Quests: Prince Ali Rescue, Icthlarin's Little Helper questPoints: 1, startLocation: '', description: '', steps: [], status: Quest_1.QuestStatus.NotStarted, miniquest: false, shortName: "contact", url: 'https://oldschool.runescape.wiki/w/Contact!', series: 'Desert', age: '', difficultyLevel: 'Master', officialDifficulty: 'Master', officialLength: 'Medium', officialAge: '', recommendedItems: [], recommendedSkills: {}, recommendedPrayers: [], rewards: { experience: [ { skill: Skill_1.Skill.Thieving, amount: 7000 } ], questPoints: 1, items: [], areas: [], unlocks: [], lamps: [], points: [], pets: [], }, }; exports.default = Contact;