osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
56 lines (55 loc) • 1.53 kB
JavaScript
import { Npc } from "../Npc";
/**
* Zogre
* A reanimated zombie ogre found in undead lairs.
* Wiki: https://oldschool.runescape.wiki/w/Zogre
*/
export const zogre = new Npc({
id: 1631,
name: "Zogre",
examine: "A zombie ogre.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Zogre",
combatLevel: 53,
stats: {
hitpoints: 50,
attack: 40,
strength: 42,
defence: 40,
magic: 18,
ranged: 18,
},
aggressiveStats: {
attackBonus: 35,
strengthBonus: 38,
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: 15,
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: [],
trivia: ["Zogres are reanimated zombie ogres, more powerful than Skogres.", "They are immune to poison as undead creatures.", "Their increased strength makes them formidable undead warriors."],
});
export default zogre;