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.75 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Maniacal Monkey
* A wild, aggressive monkey found in Kruk's Dungeon with high combat stats.
* Wiki: https://oldschool.runescape.wiki/w/Maniacal_Monkey
*/
export const maniacalMonkey = new Npc({
id: 7145,
name: 'Maniacal Monkey',
examine: 'A wild, aggressive monkey.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Maniacal_Monkey',
combatLevel: 167,
stats: {
hitpoints: 120,
attack: 100,
strength: 110,
defence: 95,
magic: 40,
ranged: 50,
},
aggressiveStats: {
attackBonus: 70,
strengthBonus: 75,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 15, slash: 20, crush: 10 },
magic: { bonus: -25, elementalWeakness: 'None' },
ranged: { light: 12, standard: 12, heavy: 12 },
},
combat: {
maxHit: 30,
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: ['Kruk\'s Dungeon'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Maniacal Monkeys are highly aggressive and dangerous primates.',
'They are found exclusively in Kruk\'s Dungeon.',
'Their wild nature makes them unpredictable opponents in combat.',
],
});
export default ManiacalMonkey;
)
]
});