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

42 lines (41 loc) 1.38 kB
// URL: https://oldschool.runescape.wiki/w/Meat_and_Greet import { Skill } from '../../account/Skill'; import { QuestStatus } from '../Quest'; import { QuestDifficulty, QuestLength } from '../enums'; const MeatAndGreet = { age: '', description: 'Help the Varrock Cook prepare a feast by gathering special meats from around Gielinor.', difficulty: QuestDifficulty.Novice, id: 68, length: QuestLength.Short, members: false, miniquest: false, name: 'Meat and Greet', questPoints: 1, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: ['Varrock'], experience: [{ amount: 200, skill: Skill.Cooking }], items: [{ name: 'Feast Token', quantity: 1 }], lamps: [], pets: [], points: [], questPoints: 1, unlocks: [{ description: 'Access to the Varrock Feast event' }], }, series: null, shortName: 'meatAndGreet', startLocation: 'Varrock Square, speak to the Cook', status: QuestStatus.NotStarted, 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.', ], url: 'https://oldschool.runescape.wiki/w/Meat_and_Greet', }; export default MeatAndGreet;