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

186 lines 4.35 kB
/** * BATCH BOSS IMPLEMENTATIONS * ======================= * * This file contains drop implementations for all boss NPCs. * Each boss is implemented following the createBossNPCDrops() template. * * Phase 3: Bosses (15+ NPCs) * Estimated Time: 5-7 hours * Value: HIGHEST * * STATUS: Implementation in progress * Completed Bosses: Vorkath, King Black Dragon (moved from dragons) * Remaining: ~15 bosses */ import { NpcDrop } from "../NpcDrop"; /** * General Graardor * God Wars Dungeon * Level: 624 * Unique drops: Hilt of Melee Weapons from GWD */ export declare const GeneralGraardorDrops: NpcDrop[]; /** * Commander Zilyana * God Wars Dungeon * Level: 625 * Unique drops: Armadyl equipment */ export declare const CommanderZilyanaDrops: NpcDrop[]; /** * Kree'arra * God Wars Dungeon * Level: 580 * Unique drops: Armadyl equipment (Ranged) */ export declare const KreeArraDrops: NpcDrop[]; /** * K'ril Tsutsaroth * God Wars Dungeon * Level: 652 * Unique drops: Zamorakian equipment */ export declare const KrilTsutsarothDrops: NpcDrop[]; /** * Kalphite Queen * Kalphite Lair * Level: 333 * Unique drops: Kalphite-specific loot */ export declare const KalphiteQueenDropsImpl: NpcDrop[]; /** * Cerberus * Cerberus' Lair * Level: 203 Combat * Unique drops: Primordial boots, Pegasian boots, Eternal boots */ export declare const CerberusDropsImpl: NpcDrop[]; /** * Kraken * Kraken Cove * Level: 291 * Unique drops: Trident of the Swamp */ export declare const KrakenDropsImpl: NpcDrop[]; /** * Sarachnis * Sarachnis' Lair * Level: 318 * Unique drops: Sarachnis eggs */ export declare const SarachnisDropsImpl: NpcDrop[]; /** * Scorpia * Scorpion Pit (Wilderness) * Level: 225 * Unique drops: Scorpia's Orb */ export declare const ScorpiaDropsImpl: NpcDrop[]; /** * Skotizo * Catacombs of Kourend * Level: 150 * Unique drops: Skotos loot */ export declare const SkotizoDropsImpl: NpcDrop[]; /** * Spindel * Spindel's Cavern * Level: 260 * Unique drops: Spindel-specific loot */ export declare const SpindelDropsImpl: NpcDrop[]; /** * Venenatis * Wilderness * Level: 318 * Unique drops: Ancient artifacts */ export declare const VenenatisDropsImpl: NpcDrop[]; /** * VetIon * Wilderness * Level: 454 * Unique drops: Vet'ion loot */ export declare const VetIonDropsImpl: NpcDrop[]; /** * Demonic Gorilla * Kruk's Dungeon * Level: 275 * Unique drops: Demonic gorilla loot */ export declare const DemonicGorillaDropsImpl: NpcDrop[]; /** * ThermonuclearSmokDevil * Smoke Dungeon * Level: 301 * Unique drops: Smoke staff, Eternal flame */ export declare const ThermonuclearSmokDevilDropsImpl: NpcDrop[]; /** * Araxxor * Araxxor's Web * Level: 225 * Unique drops: Araxxor loot */ export declare const AraxxorDropsImpl: NpcDrop[]; /** * Abyssal Sire * Abyssal Nexus * Level: 350 * Unique drops: Abyssal artifacts */ export declare const AbyssalSireDropsImpl: NpcDrop[]; /** * Artio * Frozen Realm * Level: 500+ * Unique drops: Artio's Bear Hide */ export declare const ArtioDropsImpl: NpcDrop[]; /** * Callisto * Wildlife Area (Wilderness) * Level: 412 * Unique drops: Callisto's Den loot */ export declare const CallistoDropsImpl: NpcDrop[]; /** * CalvarIon * The Sanctum * Level: 500+ * Unique drops: Sanctum artifacts */ export declare const CalvarIonDropsImpl: NpcDrop[]; declare const _default: { GWD: { GeneralGraardorDrops: NpcDrop[]; CommanderZilyanaDrops: NpcDrop[]; KreeArraDrops: NpcDrop[]; KrilTsutsarothDrops: NpcDrop[]; }; HighValueBosses: { KalphiteQueenDropsImpl: NpcDrop[]; CerberusDropsImpl: NpcDrop[]; KrakenDropsImpl: NpcDrop[]; SarachnisDropsImpl: NpcDrop[]; ScorpiaDropsImpl: NpcDrop[]; SkotizoDropsImpl: NpcDrop[]; SpindelDropsImpl: NpcDrop[]; VenenatisDropsImpl: NpcDrop[]; VetIonDropsImpl: NpcDrop[]; DemonicGorillaDropsImpl: NpcDrop[]; ThermonuclearSmokDevilDropsImpl: NpcDrop[]; }; OtherBosses: { AraxxorDropsImpl: NpcDrop[]; AbyssalSireDropsImpl: NpcDrop[]; ArtioDropsImpl: NpcDrop[]; CallistoDropsImpl: NpcDrop[]; CalvarIonDropsImpl: NpcDrop[]; }; }; export default _default; //# sourceMappingURL=BATCH_BOSS_IMPLEMENTATIONS.d.ts.map