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) • 786 B
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const TheGardenOfDeath = { age: 'Fifth Age', description: 'Explore the Garden of Death.', difficulty: QuestDifficulty.Intermediate, id: 1029, length: QuestLength.Short, members: true, miniquest: false, name: 'The Garden of Death', questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [] }, series: 'Twisted Tales', shortName: 'The Garden of Death', startLocation: 'Location', status: QuestStatus.NotStarted, steps: ['Explore garden'], url: 'https://oldschool.runescape.wiki/w/The_Garden_of_Death' };
export default TheGardenOfDeath;