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.68 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Skogre
* A zombie-like ogre creature found in undead lairs.
* Wiki: https://oldschool.runescape.wiki/w/Skogre
*/
export const skogre = new Npc({
id: 1625,
name: 'Skogre',
examine: 'A zombie-like creature.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skogre',
combatLevel: 50,
stats: {
hitpoints: 40,
attack: 35,
strength: 38,
defence: 35,
magic: 15,
ranged: 15,
},
aggressiveStats: {
attackBonus: 30,
strengthBonus: 32,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 5, crush: 10 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 12,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Lair of Tarn', 'Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Skogres are reanimated ogre corpses with zombie-like characteristics.',
'They are immune to poison as undead creatures.',
'They can be found in lairs of the undead throughout Gielinor.',
],
});
export default Skogre;
)
]
});