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';
/**
* Monkey Zombie
* A reanimated monkey corpse from Ape Atoll, an undead creature of unnatural origin.
* Wiki: https://oldschool.runescape.wiki/w/Monkey_Zombie
*/
export const monkeyZombie = new Npc({
id: 1607,
name: 'Monkey Zombie',
examine: 'A reanimated monkey.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Monkey_Zombie',
combatLevel: 57,
stats: {
hitpoints: 50,
attack: 45,
strength: 48,
defence: 42,
magic: 15,
ranged: 15,
},
aggressiveStats: {
attackBonus: 35,
strengthBonus: 40,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 8, slash: 10, crush: 5 },
magic: { bonus: -10, elementalWeakness: 'None' },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 15,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Stab'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Ape Atoll'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Monkey Zombies are reanimated corpses of apes.',
'They are immune to poison but vulnerable to holy magic.',
'These abominations plague Ape Atoll.',
],
});
export default MonkeyZombie;
)
]
});