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

55 lines (54 loc) 2.18 kB
import { LevelRequirement, QuestRequirement } from '../../Requirement'; import { Skill } from '../../account/Skill'; import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const TheTaleOfTheRighteous = { age: 'Fifth Age', description: 'Learn the tale of a righteous knight from ancient Kourend and help settle unfinished business. A spiritual story of honor and redemption in the mystical lands.', difficulty: QuestDifficulty.Novice, id: 120, length: QuestLength.Short, members: true, miniquest: false, name: 'The Tale of the Righteous', questPoints: 1, recommendations: [ { name: 'Graceful outfit', note: 'Helpful for Agility sections', type: 'item' }, ], recommendedPrayers: [], recommendedSkills: { Agility: 16, }, requirements: [ new QuestRequirement('Client of Kourend'), new LevelRequirement('Agility', 16, false), ], rewards: { areas: ['Kourend'], experience: [ { amount: 500, skill: Skill.Agility }, { amount: 1000, skill: Skill.Prayer }, ], items: [{ name: 'Holy relic' }], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [{ description: 'Access to restricted area in Kourend' }], }, series: 'Great Kourend', shortName: 'theTaleOfTheRighteous', startLocation: 'Kourend Castle grounds', status: QuestStatus.NotStarted, steps: [ 'Locate and speak with the storyteller or apparition in Kourend Castle', 'Listen to tales of an ancient righteous knight and his companions', 'Investigate locations in Kourend connected to the knight story', 'Complete virtuous tasks to honor the knight memory (helping NPCs, delivering items)', 'Navigate through Kourend districts gathering evidence and items', 'Return artifacts or complete pilgrimages to specific holy sites', 'Provide final tribute and complete the spiritual narrative', ], url: 'https://oldschool.runescape.wiki/w/The_Tale_of_the_Righteous', }; export default TheTaleOfTheRighteous;