osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
35 lines (34 loc) • 840 B
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const GettingAhead = {
age: '',
description: '',
difficulty: QuestDifficulty.Novice,
id: 49,
length: QuestLength.Short,
members: true,
miniquest: false,
name: 'Getting Ahead',
questPoints: 1,
recommendations: [],
recommendedPrayers: [],
recommendedSkills: {},
requirements: [],
rewards: {
areas: [],
experience: [],
items: [],
lamps: [],
pets: [],
points: [],
questPoints: 1,
unlocks: [],
},
series: 'Twisted Tales',
shortName: 'gettingAhead',
startLocation: '',
status: QuestStatus.NotStarted,
steps: [],
url: 'https://oldschool.runescape.wiki/w/Getting_Ahead',
};
export default GettingAhead;