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

57 lines (56 loc) 1.6 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Wild Dog * A feral dog found in the wilderness, a low-level creature. * Wiki: https://oldschool.runescape.wiki/w/Wild_dog */ export const wildDog = new Npc({ id: 1595, name: "Wild dog", examine: "A feral dog.", members: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Wild_dog", combatLevel: 26, stats: { hitpoints: 20, attack: 16, strength: 14, defence: 14, magic: 5, ranged: 8, }, aggressiveStats: { attackBonus: 18, strengthBonus: 14, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: -5, slash: -5, crush: 0 }, magic: { bonus: -15, elementalWeakness: "None" }, ranged: { light: 0, standard: 0, heavy: 0 }, }, combat: { maxHit: 8, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ["Crush"], isPoisonous: false, hasWeaponVenom: false, weaknesses: [], }, immunities: { canBePoison: true, isPoisonous: false, canBeVenom: true, canBeCannoned: true, canBeThralled: true, }, locations: ["Wilderness"], drops: [new NpcDrop("Bones", 1, 1)], trivia: ["Wild Dogs are feral canines found roaming the wilderness.", "They are aggressive and will attack unprovoked.", "Despite their aggression, they are relatively weak creatures."], }); export default wildDog;