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.59 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Black Guard
* Wiki reference: https://oldschool.runescape.wiki/w/Black_Guard
*
* A member of the Black Guard found in the Dwarven Mines.
*/
export const blackGuard = new Npc({
id: 2064,
name: "Black Guard",
examine: "A member of the Black Guard.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Black_Guard",
combatLevel: 33,
stats: {
hitpoints: 35,
attack: 30,
strength: 28,
defence: 25,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 5,
strengthBonus: 8,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 5, crush: 2 },
magic: { bonus: -20, elementalWeakness: undefined },
ranged: { light: 2, standard: 2, heavy: 0 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Slash"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Dwarven Mines"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found in Dwarven Mines",
"Aggressive dwarf guard",
"Mid-level content",
],
});
export default blackGuard;