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.74 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Calvar'ion * Wiki reference: https://oldschool.runescape.wiki/w/Calvar%27ion * * A mythical skeleton that is one of the toughest creatures in the Wilderness. */ export const calvarIon = new Npc({ id: 13212, name: "Calvar'ion", examine: "A mythical skeleton.", members: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Calvar%27ion", combatLevel: 470, stats: { hitpoints: 480, attack: 140, strength: 145, defence: 130, magic: 80, ranged: 45, }, aggressiveStats: { attackBonus: 70, strengthBonus: 75, magicStrengthBonus: 55, rangedStrengthBonus: 30, }, defences: { melee: { stab: 55, slash: 55, crush: 40 }, magic: { bonus: 50, elementalWeakness: undefined }, ranged: { light: 45, standard: 45, heavy: 30 }, }, combat: { maxHit: 40, attackSpeed: 5, respawnTime: 0, isAggressive: true, isAttackable: true, attackStyles: ["Magic", "Melee"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Crush", "Magic"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: false, canBeThralled: false, }, locations: ["Wilderness"], drops: [ new NpcDrop("Calvar'ion's soul", 1, "1/512"), new NpcDrop("Mystical artifacts", 1, "1/128"), ], trivia: [ "Mythical wilderness skeleton boss", "Uses both melee and magic attacks", "Very dangerous encounter", ], }); export default calvarIon;