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.63 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Dwarf Gang Member
* Wiki reference: https://oldschool.runescape.wiki/w/Dwarf_gang_member
*
* A member of a dwarf gang found in the White Wolf Tunnel.
*/
export const dwarfGangMember = new Npc({
id: 2065,
name: "Dwarf gang member",
examine: "A member of a dwarf gang.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Dwarf_gang_member",
combatLevel: 28,
stats: {
hitpoints: 30,
attack: 26,
strength: 24,
defence: 20,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 0,
strengthBonus: 5,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 0, slash: 0, crush: 0 },
magic: { bonus: -20, elementalWeakness: undefined },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Stab"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["White Wolf Tunnel"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Member of a dwarf gang",
"Found in White Wolf Tunnel",
"Aggressive dwarf",
],
});
export default dwarfGangMember;