osrs-tools
Version:
A JavaScript package to provide JSON data for all current Old School RuneScape quests. This package aims to help junior software developers create tools related to Old School RuneScape. It's a work in progress, and issues should be reported to jamescer@ha
52 lines (51 loc) • 1.49 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Skill_1 = require("../../account/Skill");
const Quest_1 = require("../Quest");
const cooking = Skill_1.Skill.Cooking;
const CookAssistant = {
id: 1,
name: "Cook's Assistant",
members: false,
difficulty: 'Novice',
length: 'Short',
requirements: [
/**todo fix this */
],
questPoints: 1,
startLocation: 'Lumbridge Castle kitchen',
description: 'Help the cook in Lumbridge Castle by gathering ingredients for his cake.',
steps: [
'Speak to the Cook in Lumbridge Castle kitchen.',
'Collect a bucket of milk.',
'Collect a pot of flour.',
'Collect an egg.',
'Return to the Cook with all the ingredients.',
],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: "Cook's Assistant",
url: 'https://oldschool.runescape.wiki/w/Cook%27s_Assistant',
series: 'None',
age: 'Fifth Age',
difficultyLevel: 'Novice',
officialDifficulty: 'Novice',
officialLength: 'Very Short',
officialAge: 'Fifth Age',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [
{ skill: Skill_1.Skill.Cooking, amount: 300 },
],
questPoints: 1,
items: [],
areas: [],
unlocks: [],
lamps: [],
points: [],
pets: [],
},
};
exports.default = CookAssistant;