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

35 lines (34 loc) 830 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const GhostsAhoy = { age: '', description: '', difficulty: QuestDifficulty.Intermediate, id: 50, length: QuestLength.MediumLong, members: true, miniquest: false, name: 'Ghosts Ahoy', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [], }, series: null, shortName: 'ghostsAhoy', startLocation: '', status: QuestStatus.NotStarted, steps: [], url: 'https://oldschool.runescape.wiki/w/Ghosts_Ahoy', }; export default GhostsAhoy;