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) 851 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const ScorpionCatcher = { age: '', description: '', difficulty: QuestDifficulty.Intermediate, id: 91, length: QuestLength.Medium, members: true, miniquest: false, name: 'Scorpion Catcher', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [], }, series: null, shortName: 'scorpionCatcher', startLocation: '', status: QuestStatus.NotStarted, steps: [], url: 'https://oldschool.runescape.wiki/w/Scorpion_Catcher', }; export default ScorpionCatcher;