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"; /** * Dire Wolf * Wiki reference: https://oldschool.runescape.wiki/w/Dire_wolf * * A fearsome wolf found in the Wilderness. */ export const direWolf = new Npc({ id: 6593, name: "Dire Wolf", examine: "A fearsome wolf.", members: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Dire_wolf", combatLevel: 128, stats: { hitpoints: 80, attack: 85, strength: 90, defence: 75, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: 30, strengthBonus: 35, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 15, slash: 15, crush: 15 }, magic: { bonus: -40, elementalWeakness: undefined }, ranged: { light: 10, standard: 10, heavy: 10 }, }, combat: { maxHit: 28, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ["Melee"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Crush"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: false, canBeThralled: true, }, locations: ["Wilderness"], drops: [new NpcDrop("Bones", 1, "Always")], trivia: [ "Fearsome wilderness predator", "High damage output", "Members-only content", ], }); export default direWolf;