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.71 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Ice Wolf
* A wolf forged from the frozen peaks of Ice Mountain, a creature of pure cold.
* Wiki: https://oldschool.runescape.wiki/w/Ice_wolf
*/
export const iceWolf = new Npc({
id: 6593,
name: 'Ice wolf',
examine: 'A wolf of ice.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Ice_wolf',
combatLevel: 128,
stats: {
hitpoints: 80,
attack: 75,
strength: 80,
defence: 75,
magic: 30,
ranged: 40,
},
aggressiveStats: {
attackBonus: 50,
strengthBonus: 60,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 15, slash: 18, crush: 12 },
magic: { bonus: 20, elementalWeakness: 'Fire' },
ranged: { light: 15, standard: 15, heavy: 15 },
},
combat: {
maxHit: 28,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ['Fire'],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Ice Mountain'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Ice Wolves are formed from the frozen essence of Ice Mountain.',
'They are weak to fire-based attacks due to their icy nature.',
'These creatures hunt in groups across the frozen peaks.',
],
});
export default IceWolf;
)
]
});