osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
55 lines (54 loc) • 1.5 kB
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const BetweenARock = {
age: '',
description: '',
difficulty: QuestDifficulty.Experienced,
id: 9,
length: QuestLength.Long,
members: true,
miniquest: false,
// Assign a unique ID if available
name: 'Between a Rock...',
questPoints: 2,
recommendations: [
{
name: 'Gold helmet',
note: 'Required for quest completion.',
type: 'item',
},
{
name: 'Food and energy potions',
note: 'Useful for travel and combat.',
type: 'tip',
},
],
recommendedPrayers: ['Protect from Melee'],
recommendedSkills: {
Defence: 30,
Mining: 40,
Smithing: 50,
},
requirements: [],
rewards: {
areas: [],
experience: [
{ amount: 5000, skill: 'Defence' },
{ amount: 5000, skill: 'Mining' },
{ amount: 5000, skill: 'Smithing' },
],
items: [{ name: 'Gold helmet' }],
lamps: [],
pets: [],
points: [],
questPoints: 2,
unlocks: [{ description: 'Ability to mine gold ore in the Dwarven Mine' }],
},
series: 'Rise of the Red Axe',
shortName: 'betweenARock',
startLocation: '',
status: QuestStatus.NotStarted,
steps: [],
url: 'https://oldschool.runescape.wiki/w/Between_a_Rock...',
};
export default BetweenARock;