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.7 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Reanimated Dog
* A zombie dog found in the Catacombs, a reanimated undead creature.
* Wiki: https://oldschool.runescape.wiki/w/Reanimated_dog
*/
export const reanimatedDog = new Npc({
id: 1596,
name: 'Reanimated dog',
examine: 'A zombie dog.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Reanimated_dog',
combatLevel: 40,
stats: {
hitpoints: 30,
attack: 25,
strength: 28,
defence: 25,
magic: 12,
ranged: 12,
},
aggressiveStats: {
attackBonus: 20,
strengthBonus: 24,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 3, slash: 3, crush: 8 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Reanimated Dogs are zombie dogs found in the Catacombs.',
'They are weaker than bears but equally immune to poison.',
'They serve the undead forces within the dungeon.',
],
});
export default ReanimatedDog;
)
]
});