UNPKG

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.56 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Guard Dog * Wiki reference: https://oldschool.runescape.wiki/w/Guard_dog * * A fierce guard dog used to protect valuable locations. */ export const guardDog = new Npc({ id: 1596, name: "Guard dog", examine: "A fierce guard dog.", members: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Guard_dog", combatLevel: 26, stats: { hitpoints: 20, attack: 23, strength: 20, defence: 16, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: -5, strengthBonus: 5, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 0, slash: 0, crush: 0 }, magic: { bonus: -25, 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: ["Crush"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: true, canBeThralled: true, }, locations: ["Various"], drops: [new NpcDrop("Bones", 1, "Always")], trivia: [ "Aggressive guard dog", "Fierce protector of locations", "Low-level combat", ], }); export default guardDog;