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 (43 loc) • 1.39 kB
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const WitchesPotion = {
age: 'First Age',
description: 'Help the witch by collecting ingredients for her potion in exchange for an artifact.',
difficulty: QuestDifficulty.Novice,
id: 136,
length: QuestLength.Short,
members: false,
miniquest: false,
name: "Witch's Potion",
questPoints: 1,
recommendations: [],
recommendedPrayers: [],
recommendedSkills: {},
requirements: [],
rewards: {
areas: [],
experience: [],
items: [{ name: 'Witchwood icon' }],
lamps: [],
pets: [],
points: [],
questPoints: 1,
unlocks: [],
},
series: null,
shortName: 'witchesPotion',
startLocation: 'Witch house, south of Draynor Manor',
status: QuestStatus.NotStarted,
steps: [
'Talk to the Witch near Draynor Manor.',
'The witch asks you to collect ingredients for her potion.',
'Collect an eye of newt from Lumbridge Swamp.',
'Collect crushed eye of newt.',
'Collect ashes from a fireplace.',
'Collect a burnt meat from a fire.',
'Return to the witch with all ingredients.',
'Receive the witchwood icon.',
],
url: 'https://oldschool.runescape.wiki/w/Witch%27s_Potion',
};
export default WitchesPotion;