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

65 lines (64 loc) 1.69 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Callisto * Wiki reference: https://oldschool.runescape.wiki/w/Callisto * * A mythical bear that is one of the toughest creatures in the Wilderness. */ export const callisto = new Npc({ id: 13211, name: "Callisto", examine: "A mythical bear.", members: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Callisto", combatLevel: 470, stats: { hitpoints: 480, attack: 140, strength: 150, defence: 130, magic: 70, ranged: 50, }, aggressiveStats: { attackBonus: 75, strengthBonus: 80, magicStrengthBonus: 50, rangedStrengthBonus: 35, }, defences: { melee: { stab: 55, slash: 55, crush: 40 }, magic: { bonus: 45, elementalWeakness: undefined }, ranged: { light: 45, standard: 45, heavy: 30 }, }, combat: { maxHit: 45, attackSpeed: 5, respawnTime: 0, isAggressive: true, isAttackable: true, attackStyles: ["Melee"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Crush"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: false, canBeThralled: false, }, locations: ["Wilderness"], drops: [ new NpcDrop("Callisto's eye", 1, "1/512"), new NpcDrop("Beasts of burden", 1, "1/128"), ], trivia: [ "Mythical wilderness boss", "One of the toughest creatures in Gielinor", "Drops powerful items", ], }); export default callisto;