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.72 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Monkey Archer
* A ranged-focused monkey that attacks with a bow on Ape Atoll.
* Wiki: https://oldschool.runescape.wiki/w/Monkey_Archer
*/
export const monkeyArcher = new Npc({
id: 1606,
name: 'Monkey Archer',
examine: 'A monkey with a bow.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Monkey_Archer',
combatLevel: 67,
stats: {
hitpoints: 60,
attack: 45,
strength: 40,
defence: 45,
magic: 20,
ranged: 65,
},
aggressiveStats: {
attackBonus: 35,
strengthBonus: 30,
magicStrengthBonus: 0,
rangedStrengthBonus: 40,
},
defences: {
melee: { stab: 5, slash: 5, crush: 8 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 20, standard: 20, heavy: 20 },
},
combat: {
maxHit: 20,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Ranged'],
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 Archers are ranged specialists found on Ape Atoll.',
'They attack from a distance using bows and arrows.',
'They are significantly weaker in melee combat compared to other monkeys.',
],
});
export default MonkeyArcher;
)
]
});