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';
/**
* Monkey Guard
* A monkey standing guard on Ape Atoll, one of the island's defenders.
* Wiki: https://oldschool.runescape.wiki/w/Monkey_Guard
*/
export const monkeyGuard = new Npc({
id: 1605,
name: 'Monkey Guard',
examine: 'A monkey standing guard.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Monkey_Guard',
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: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Ape Atoll'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Monkey Guards defend the settlements on Ape Atoll.',
'They are more intelligent than wild monkeys.',
'These guards form part of the island\'s security.',
],
});
export default MonkeyGuard;
)
]
});