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

40 lines (39 loc) 1.07 kB
import { QuestDifficulty, QuestLength } from '../enums'; import { QuestStatus } from '../Quest'; const ElementalWorkshopI = { age: '', description: '', difficulty: QuestDifficulty.Novice, id: 37, length: QuestLength.Short, members: true, miniquest: false, // Assign a unique ID if available name: 'Elemental Workshop I', // Skills: Mining 20, Smithing 20, Crafting 20 questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [ { amount: 5000, skill: 'Crafting' }, { amount: 5000, skill: 'Smithing' }, ], items: [], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [], }, series: 'Elemental Workshop', shortName: 'elementalWorkshopI', startLocation: '', status: QuestStatus.NotStarted, steps: [], url: 'https://oldschool.runescape.wiki/w/Elemental_Workshop_I', }; export default ElementalWorkshopI;