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

70 lines (69 loc) 2.98 kB
import { LevelRequirement, QuestRequirement } from "../../Requirement"; import { Skill } from "../../account/Skill"; import { QuestDifficulty, QuestLength } from "../enums"; import { QuestStatus } from "../Quest"; /** * The Great Brain Robbery quest data * @author James Cerniglia * @see https://oldschool.runescape.wiki/w/The_Great_Brain_Robbery for quest details and requirements */ const TheGreatBrainRobbery = { age: "Fifth Age", description: "Travel to the island of Mos Le'Harmless and uncover a mad scientist plot involving mind control and theft of consciousness. Stop the nefarious experiments.", difficulty: QuestDifficulty.Intermediate, id: 114, length: QuestLength.Medium, members: true, miniquest: false, name: "The Great Brain Robbery", questPoints: 2, recommendations: [ { name: "Boat ticket to Mos Le'Harmless", type: "item" }, { name: "Combat equipment", type: "item" }, { name: "Food", type: "item" }, ], recommendedPrayers: ["Protect from Melee", "Protect from Missiles"], recommendedSkills: { Combat: 50, }, requirements: [ new QuestRequirement("Cabin Fever"), new LevelRequirement("Crafting", 16, false), new LevelRequirement("Construction", 30, false), new LevelRequirement("Prayer", 50, false), new LevelRequirement("Slayer", 30, false), ], rewards: { areas: ["Mos Le'Harmless"], experience: [ { amount: 2000, skill: Skill.Prayer }, { amount: 1000, skill: Skill.Crafting }, { amount: 1000, skill: Skill.Construction }, ], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [ { description: "Barrelchest anchor (To repair your barrelchest anchor, return to Mos Le'Harmless and make sure you have a book o' piracy in your inventory; then, go to the docks south of the bank and talk to \"Smith.\" He can fix your anchor for 230,000 coins.)", }, ], }, series: "Pirate", shortName: "theGreatBrainRobbery", startLocation: "Mos Le'Harmless pirate settlement, accessible via boat from Port Sarim", status: QuestStatus.NotStarted, steps: [ "Travel to Mos Le'Harmless island by boat and speak to the quest giver", "Investigate the mysterious laboratory and speak to enslaved workers", "Discover the mad scientist plan involving brain extraction and control", "Collect or craft items necessary to infiltrate the experiment chambers", "Navigate through the laboratory avoiding or defeating hostile creatures", "Disrupt the mind-control apparatus and free the affected victims", "Confront the scientist and complete the destruction of their operation", ], url: "https://oldschool.runescape.wiki/w/The_Great_Brain_Robbery", }; export default TheGreatBrainRobbery;