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.71 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Ogres Warrior
* A strong ogress warrior found on Corsair Cove Island.
* Wiki: https://oldschool.runescape.wiki/w/Ogress_Warrior
*/
export const ogresWarrior = new Npc({
id: 4646,
name: 'Ogress Warrior',
examine: 'A strong ogress.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Ogress_Warrior',
combatLevel: 82,
stats: {
hitpoints: 75,
attack: 65,
strength: 70,
defence: 65,
magic: 25,
ranged: 25,
},
aggressiveStats: {
attackBonus: 50,
strengthBonus: 55,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 10, crush: 15 },
magic: { bonus: -20, elementalWeakness: 'None' },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 20,
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: ['Corsair Cove Island'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Ogress Warriors are strong female ogres encountered on Corsair Cove Island.',
'They are melee-focused and dangerous in combat.',
'They represent the warrior caste of ogre society.',
],
});
export default OgresWarrior;
)
]
});