osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
62 lines (61 loc) • 1.61 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Armoured Zombie
* Wiki reference: https://oldschool.runescape.wiki/w/Armoured_zombie
*
* A zombie clad in heavy armour found at Barrows.
*/
export const armouredZombie = new Npc({
id: 1598,
name: "Armoured zombie",
examine: "A zombie in heavy armour.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Armoured_zombie",
combatLevel: 22,
stats: {
hitpoints: 25,
attack: 20,
strength: 18,
defence: 30,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -10,
strengthBonus: -5,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 15, slash: 15, crush: 10 },
magic: { bonus: -25, elementalWeakness: undefined },
ranged: { light: 10, standard: 10, heavy: 5 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Slash", "Fire"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: false,
canBeThralled: true,
},
locations: ["Barrows"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found at Barrows",
"Zombie clad in heavy armour",
"Weak to fire magic",
],
});
export default armouredZombie;