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

52 lines (51 loc) 1.89 kB
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const ClientOfKourend = { age: '', description: '', difficulty: QuestDifficulty.Novice, id: 15, length: QuestLength.Medium, members: true, miniquest: false, // Assign a unique ID if available name: 'Client of Kourend', questPoints: 1, recommendations: [ { name: 'Feather', note: 'Stripy or coloured feather, not magic gold', type: 'item' }, { name: 'Weight-reducing clothing', note: 'Graceful outfit recommended', type: 'item' }, { name: 'Stamina potion', type: 'item' }, { name: 'Games necklace', note: 'Fast travel to Dark Altar', type: 'item' }, { name: 'Arceuus library teleport', note: 'Fast travel to Dark Altar', type: 'item' }, { name: 'Fairy rings', note: 'Fast travel to Dark Altar and around Great Kourend', type: 'item', }, { name: "Xeric's Talisman", note: 'Fast travel around Great Kourend', type: 'item' }, { name: 'Coins', note: 'For Lovakengj Minecart Network', type: 'item' }, ], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: ['Great Kourend'], experience: [], items: [{ name: "Kharedst's memoirs" }], lamps: [ { amount: 500, note: 'Antique lamp, any skill' }, { amount: 500, note: 'Antique lamp, any skill' }, ], pets: [], points: [], questPoints: 1, unlocks: [{ description: 'Unlocks Kourend Castle Teleport spell' }], }, series: 'Great Kourend', shortName: 'clientOfKourend', startLocation: '', status: QuestStatus.NotStarted, steps: [], url: 'https://oldschool.runescape.wiki/w/Client_of_Kourend', }; export default ClientOfKourend;