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";
/**
* Chaos Dwarf
* Wiki reference: https://oldschool.runescape.wiki/w/Chaos_Dwarf
*
* A dwarf follower of chaos found in the Wilderness.
*/
export const chaosDwarf = new Npc({
id: 545,
name: "Chaos Dwarf",
examine: "A dwarf follower of chaos.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Chaos_Dwarf",
combatLevel: 26,
stats: {
hitpoints: 20,
attack: 22,
strength: 20,
defence: 18,
magic: 15,
ranged: 18,
},
aggressiveStats: {
attackBonus: 0,
strengthBonus: 5,
magicStrengthBonus: 10,
rangedStrengthBonus: 5,
},
defences: {
melee: { stab: 0, slash: 0, crush: 0 },
magic: { bonus: -20, elementalWeakness: undefined },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 10,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Melee", "Ranged"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Crush", "Fire"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Wilderness"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found in Wilderness",
"Dwarf follower of chaos",
"Uses melee and ranged attacks",
],
});
export default chaosDwarf;