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) • 792 B
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const ThePathOfGlouphrie = { age: 'Fifth Age', description: 'Follow the path of Glouphrie.', difficulty: QuestDifficulty.Experienced, id: 1031, length: QuestLength.Medium, members: true, miniquest: false, name: 'The Path of Glouphrie', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [] }, series: 'Gnome, #3', shortName: 'The Path of Glouphrie', startLocation: 'Gnome Land', status: QuestStatus.NotStarted, steps: ['Follow path'], url: 'https://oldschool.runescape.wiki/w/The_Path_of_Glouphrie' };
export default ThePathOfGlouphrie;