osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
52 lines (51 loc) • 1.45 kB
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const ATailOfTwoCats = {
age: '',
description: '',
difficulty: QuestDifficulty.Intermediate,
id: 5,
length: QuestLength.Long,
members: true,
miniquest: false,
// Assign a unique ID if available
name: 'A Tail of Two Cats',
// Only quest requirement: Icthlarin's Little Helper
questPoints: 2,
recommendations: [
{
name: 'Cat',
note: 'Required to complete the quest.',
type: 'item',
},
{
name: 'Food and energy potions',
note: 'Useful for travel and combat.',
type: 'tip',
},
],
recommendedPrayers: [],
recommendedSkills: {},
requirements: [],
rewards: {
experience: [
{ amount: 2000, skill: 'Agility' },
{ amount: 2500, skill: 'Thieving' },
],
lamps: [],
pets: [],
points: [],
questPoints: 2,
unlocks: [
{ description: 'Ability to turn your cat into a hellcat' },
{ description: 'Ability to obtain Bob the Cat’s collar' },
],
},
series: 'Dragonkin',
shortName: 'aTailOfTwoCats',
startLocation: '',
status: QuestStatus.NotStarted,
steps: [],
url: 'https://oldschool.runescape.wiki/w/A_Tail_of_Two_Cats',
};
export default ATailOfTwoCats;