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';
/**
* Ogress Shaman
* A magical ogress from Corsair Cove Island, a powerful spellcaster.
* Wiki: https://oldschool.runescape.wiki/w/Ogress_Shaman
*/
export const ogresShaman = new Npc({
id: 4647,
name: 'Ogress Shaman',
examine: 'A magical ogress.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Ogress_Shaman',
combatLevel: 82,
stats: {
hitpoints: 75,
attack: 60,
strength: 65,
defence: 60,
magic: 70,
ranged: 25,
},
aggressiveStats: {
attackBonus: 45,
strengthBonus: 45,
magicStrengthBonus: 60,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 12, crush: 8 },
magic: { bonus: 20, elementalWeakness: 'Fire' },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 25,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Magic', 'Melee'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ['Fire', 'Stab'],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Corsair Cove Island'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Ogress Shamans are spellcasters that protect Corsair Cove.',
'They use both melee and magic attacks.',
'These shamans are weak to fire-based spells.',
],
});
export default OgresShaman;
)
]
});