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.68 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* White Wolf
* A white-furred wolf found on snowy mountains.
* Wiki: https://oldschool.runescape.wiki/w/White_wolf
*/
export const whiteWolf = new Npc({
id: 6593,
name: 'White wolf',
examine: 'A white wolf.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/White_wolf',
combatLevel: 128,
stats: {
hitpoints: 80,
attack: 75,
strength: 80,
defence: 75,
magic: 30,
ranged: 40,
},
aggressiveStats: {
attackBonus: 60,
strengthBonus: 65,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 15, crush: 8 },
magic: { bonus: -20, elementalWeakness: 'None' },
ranged: { light: 10, standard: 10, heavy: 10 },
},
combat: {
maxHit: 28,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['White Wolf Mountain'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'White Wolves are predators adapted to snowy mountain environments.',
'Their white fur provides camouflage in icy terrain.',
'They are pack hunters and can be dangerous in groups.',
],
});
export default WhiteWolf;
)
]
});