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) 786 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const SecretsOfTheNorth = { age: 'Fifth Age', description: 'Uncover secrets of the north.', difficulty: QuestDifficulty.Master, id: 1043, length: QuestLength.Medium, members: true, miniquest: false, name: 'Secrets of the North', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [] }, series: 'Mahjarrat, #13', shortName: 'Secrets of the North', startLocation: 'North', status: QuestStatus.NotStarted, steps: ['Uncover secrets'], url: 'https://oldschool.runescape.wiki/w/Secrets_of_the_North' }; export default SecretsOfTheNorth;