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) 759 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const TearsOfGuthix = { age: 'Fifth Age', description: 'Collect tears of Guthix.', difficulty: QuestDifficulty.Intermediate, id: 1025, length: QuestLength.VeryShort, members: true, miniquest: false, name: 'Tears of Guthix', questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [] }, series: 'None', shortName: 'Tears of Guthix', startLocation: 'Undercity', status: QuestStatus.NotStarted, steps: ['Collect tears'], url: 'https://oldschool.runescape.wiki/w/Tears_of_Guthix' }; export default TearsOfGuthix;