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

5 lines (4 loc) 778 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const BeneathCursedSands = { age: 'Fifth Age', description: 'Go beneath cursed sands.', difficulty: QuestDifficulty.Master, id: 1036, length: QuestLength.Medium, members: true, miniquest: false, name: 'Beneath Cursed Sands', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [] }, series: 'Kharidian, #4', shortName: 'Beneath Cursed Sands', startLocation: 'Desert', status: QuestStatus.NotStarted, steps: ['Go beneath'], url: 'https://oldschool.runescape.wiki/w/Beneath_Cursed_Sands' }; export default BeneathCursedSands;