osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
65 lines (64 loc) • 1.68 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* TzHaar-Hur
* Wiki reference: https://oldschool.runescape.wiki/w/TzHaar-Hur
*
* A melee-focused TzHaar warrior. Aggressive combat creature.
*/
export const tzHaarHur = new Npc({
id: 1631,
name: "TzHaar-Hur",
examine: "A TzHaar creature.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/TzHaar-Hur",
combatLevel: 179,
stats: {
hitpoints: 150,
attack: 110,
strength: 120,
defence: 100,
magic: 70,
ranged: 70,
},
aggressiveStats: {
attackBonus: 0,
strengthBonus: 0,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 50, slash: 50, crush: 50 },
magic: { bonus: 30, elementalWeakness: undefined },
ranged: { light: 30, standard: 30, heavy: 30 },
},
combat: {
maxHit: 38,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Stab attacks"],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["TzHaar City"],
drops: [
new NpcDrop("Bones", 1, "Always"),
new NpcDrop("TzHaar-Ket Hide", 1, "Rare"),
],
trivia: [
"A melee-focused TzHaar warrior",
"Found in the TzHaar City",
"Aggressive combat creature",
],
});
export default tzHaarHur;