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

92 lines (91 loc) 2.55 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Kraken * Wiki reference: https://oldschool.runescape.wiki/w/Kraken * * A massive sea creature residing in the Kraken Cove. Uses magic attacks exclusively. * Can summon tentacles that must be dealt with during the fight. */ export const kraken = new Npc({ // Basic Identification id: 7145, name: "Kraken", examine: "A massive tentacled creature.", members: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Kraken", // Combat Level & Slayer combatLevel: 291, // Combat Stats from wiki // https://oldschool.runescape.wiki/w/Kraken stats: { hitpoints: 500, attack: 50, strength: 50, defence: 100, magic: 110, ranged: 50, }, // Aggressive Stats (Offensive Bonuses) aggressiveStats: { attackBonus: 0, strengthBonus: 0, magicStrengthBonus: 20, rangedStrengthBonus: 0, }, // Defensive Stats defences: { melee: { stab: 60, slash: 60, crush: 40, }, magic: { bonus: 50, elementalWeakness: "Air", }, ranged: { light: 40, standard: 40, heavy: 40, }, }, // Combat Mechanics combat: { maxHit: 60, attackSpeed: 5, respawnTime: 60, isAggressive: true, isAttackable: true, attackStyles: ["Magic"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Fire spells", "Air spells"], }, // Immunities immunities: { canBePoison: true, isPoisonous: false, canBeVenom: true, canBeCannoned: false, // Cannot cannon in the cove canBeThralled: true, }, // Location & Drops locations: ["Kraken Cove"], drops: [ // 100% drops new NpcDrop("Tentacle", 1, "Always"), new NpcDrop("Coins", [1500, 4000], "Always"), // Unique drops new NpcDrop("Trident of the seas", 1, "1/512"), new NpcDrop("Kraft (pet)", 1, "1/3000"), ], trivia: [ "Kraken uses only magic attacks and can summon tentacles", "The boss is located in an instanced cave which costs 50k to enter", "Weak to fire spells and air spells", "Drops the Trident of the seas, one of the best magic weapons", "The Kraft pet is one of the more uncommon boss pets", ], }); export default kraken;