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.75 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Spiritual Mage
* A mage servant of the gods found in the God Wars Dungeon.
* Wiki: https://oldschool.runescape.wiki/w/Spiritual_mage
*/
export const spiritualMage = new Npc({
id: 2216,
name: 'Spiritual mage',
examine: 'A mage servant of the gods.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Spiritual_mage',
combatLevel: 120,
stats: {
hitpoints: 100,
attack: 60,
strength: 50,
defence: 70,
magic: 95,
ranged: 40,
},
aggressiveStats: {
attackBonus: 40,
strengthBonus: 30,
magicStrengthBonus: 50,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 15, slash: 15, crush: 20 },
magic: { bonus: 25, elementalWeakness: 'Fire' },
ranged: { light: 10, standard: 10, heavy: 10 },
},
combat: {
maxHit: 30,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Magic'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ['Fire'],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['God Wars Dungeon'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Spiritual Mages are magical servants of the gods found in the God Wars Dungeon.',
'They primarily attack using fire-based magic spells.',
'They are weak to fire damage despite their fire affinity.',
],
});
export default SpiritualMage;
)
]
});