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

48 lines (47 loc) 1.57 kB
import { QuestRequirement } from '../../Requirement'; import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const PriestInPeril = { age: 'First Age', description: 'Rescue a priest who has been trapped in a cursed temple by dark forces.', difficulty: QuestDifficulty.Novice, id: 81, length: QuestLength.Medium, members: false, miniquest: false, name: 'Priest in Peril', questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [new QuestRequirement('Rune Mysteries')], rewards: { areas: [], experience: [{ amount: 1125, skill: 'Prayer' }], items: [], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [ { description: 'Access to the Underground Pass', url: 'https://oldschool.runescape.wiki/w/Underground_Pass', }, ], }, series: null, shortName: 'priestInPeril', startLocation: 'Morytania, near the entrance to the temple', status: QuestStatus.NotStarted, steps: [ 'Travel to the temple in Morytania.', 'Speak to the priest and learn about his predicament.', 'Use prayers to break the curse affecting him.', 'Navigate through the cursed temple.', 'Defeat the curse and rescue the priest.', 'Return to complete the quest.', ], url: 'https://oldschool.runescape.wiki/w/Priest_in_Peril', }; export default PriestInPeril;