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) 834 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const TheGrandTree = { age: '', description: '', difficulty: QuestDifficulty.Novice, id: 113, length: QuestLength.Long, members: true, miniquest: false, name: 'The Grand Tree', questPoints: 3, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 3, unlocks: [], }, series: 'Gnome', shortName: 'theGrandTree', startLocation: '', status: QuestStatus.NotStarted, steps: [], url: 'https://oldschool.runescape.wiki/w/The_Grand_Tree', }; export default TheGrandTree;