osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
44 lines • 1.52 kB
JavaScript
;
// URL: https://oldschool.runescape.wiki/w/Meat_and_Greet
Object.defineProperty(exports, "__esModule", { value: true });
const Quest_1 = require("../../quest/Quest");
const Skill_1 = require("../../account/Skill");
const enums_1 = require("../enums");
const MeatAndGreet = {
id: 0,
name: 'Meat and Greet',
members: false,
difficulty: enums_1.QuestDifficulty.Novice,
length: enums_1.QuestLength.Short,
requirements: [],
questPoints: 1,
startLocation: 'Varrock Square, speak to the Cook',
description: 'Help the Varrock Cook prepare a feast by gathering special meats from around Gielinor.',
steps: [
'Speak to the Cook in Varrock Square.',
'Collect special meats from various locations.',
'Return the meats to the Cook.',
'Assist in preparing the feast.',
],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: 'meatAndGreet',
url: 'https://oldschool.runescape.wiki/w/Meat_and_Greet',
series: null,
age: '',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [{ skill: Skill_1.Skill.Cooking, amount: 200 }],
questPoints: 1,
items: [{ name: 'Feast Token', quantity: 1 }],
areas: ['Varrock'],
unlocks: [{ description: 'Access to the Varrock Feast event' }],
lamps: [],
points: [],
pets: [],
},
};
exports.default = MeatAndGreet;
//# sourceMappingURL=MeatAndGreet.js.map