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';
/**
* Karamjan Monkey
* A monkey native to the island of Karamja, an untamed creature.
* Wiki: https://oldschool.runescape.wiki/w/Karamjan_Monkey
*/
export const karamjanMonkey = new Npc({
id: 1594,
name: 'Karamjan Monkey',
examine: 'A monkey from Karamja.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Karamjan_Monkey',
combatLevel: 17,
stats: {
hitpoints: 10,
attack: 10,
strength: 12,
defence: 8,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 5,
strengthBonus: 8,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 0, slash: 2, crush: -2 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 4,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Karamja'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Karamjan Monkeys are native to the tropical island.',
'They are unintelligent creatures of the jungle.',
'These monkeys can be found roaming the island freely.',
],
});
export default KaramjanMonkey;
)
]
});