UNPKG

osrs-tools

Version:

A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information

54 lines (53 loc) 1.46 kB
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const ASoulsBane = { age: '', // Not specified in JSON description: '', difficulty: QuestDifficulty.Novice, id: 4, length: QuestLength.Medium, members: true, miniquest: false, // Assign a unique ID if available name: "A Soul's Bane", // No skill or quest requirements questPoints: 1, recommendations: [ { name: 'Food', note: 'Useful for low-level players.', type: 'item', }, { name: 'Energy potions', note: 'Useful for running between locations.', type: 'tip', }, ], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: ['The Rift'], experience: [ { amount: 500, skill: 'Defence' }, { amount: 500, skill: 'Hitpoints' }, ], items: [{ name: 'Ability to enter the Rift' }], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [{ description: 'Ability to enter the Rift freely' }], }, series: null, shortName: 'aSoulsBane', startLocation: '', // Not specified in JSON status: QuestStatus.NotStarted, // Not specified in JSON steps: [], url: 'https://oldschool.runescape.wiki/w/A_Soul%27s_Bane', }; export default ASoulsBane;