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

39 lines (38 loc) 1.06 kB
import { LevelRequirement, QuestRequirement } from '../../Requirement'; import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const TheDepthsOfDespair = { age: '', description: '', difficulty: QuestDifficulty.Intermediate, id: 105, length: QuestLength.Short, members: true, miniquest: false, name: 'The Depths of Despair', questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [ new QuestRequirement('Client of Kourend'), new LevelRequirement('Agility', 18, false), ], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [], }, series: 'Great Kourend', shortName: 'theDepthsOfDespair', startLocation: '', status: QuestStatus.NotStarted, steps: [], url: 'https://oldschool.runescape.wiki/w/The_Depths_of_Despair', }; export default TheDepthsOfDespair;