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

67 lines (65 loc) 1.77 kB
import { Npc } from '../Npc'; import { NpcDrop } from '../NpcDrop'; /** * Skeleton Mage * A skeletal mage that attacks using magic, particularly fire spells. * Wiki: https://oldschool.runescape.wiki/w/Skeleton_(Digsite) */ export const skeletonMage = new Npc({ id: 1621, name: 'Skeleton mage', examine: 'A skeletal mage.', members: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skeleton_(Digsite)', combatLevel: 63, stats: { hitpoints: 50, attack: 30, strength: 25, defence: 30, magic: 60, ranged: 20, }, aggressiveStats: { attackBonus: 25, strengthBonus: 0, magicStrengthBonus: 30, rangedStrengthBonus: 0, }, defences: { melee: { stab: -5, slash: -5, crush: 5 }, magic: { bonus: 10, elementalWeakness: 'Fire' }, ranged: { light: -10, standard: -10, heavy: -10 }, }, combat: { maxHit: 15, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ['Magic'], isPoisonous: false, hasWeaponVenom: false, weaknesses: ['Fire'], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: true, canBeThralled: true, }, locations: ['Digsite Dungeon', 'Catacombs'], drops: [ new NpcDrop(`Bones, `, 1, `1), ], trivia: [ 'Skeleton mages attack exclusively using magic, particularly fire spells.', 'They can be found in both the Digsite Dungeon and Catacombs.', 'Their fire-based attacks make them weak to fire damage.', ], }); export default SkeletonMage; ) ] });