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

38 lines (37 loc) 1.06 kB
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const LearningTheRopes = { age: 'Fifth Age', description: 'Tutorial quest teaching the basics of Old School RuneScape.', difficulty: QuestDifficulty.Novice, id: 1000, length: QuestLength.VeryShort, members: false, miniquest: false, name: 'Learning the Ropes', questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [], }, series: 'None', shortName: 'Learning the Ropes', startLocation: 'Tutorial Island', status: QuestStatus.NotStarted, steps: [ 'Complete the tutorial on Tutorial Island.', 'Learn the basics of combat, skills, and RuneScape.', ], url: 'https://oldschool.runescape.wiki/w/Learning_the_Ropes', }; export default LearningTheRopes;