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) 782 B
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const ANightAtTheTheatre = { age: 'Fifth Age', description: 'Spend a night at the theatre.', difficulty: QuestDifficulty.Master, id: 1034, length: QuestLength.Medium, members: true, miniquest: false, name: 'A Night at the Theatre', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [] }, series: 'None', shortName: 'A Night at the Theatre', startLocation: 'Theatre', status: QuestStatus.NotStarted, steps: ['Spend night'], url: 'https://oldschool.runescape.wiki/w/A_Night_at_the_Theatre' }; export default ANightAtTheTheatre;