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.59 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Big Wolf
* Wiki reference: https://oldschool.runescape.wiki/w/Big_Wolf
*
* A dangerous Wilderness predator known for its high damage output.
*/
export const bigWolf = new Npc({
id: 6593,
name: "Big Wolf",
examine: "A large grey wolf.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Big_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: [
"Aggressive wilderness predator",
"Known for high damage output",
"Members-only content",
],
});
export default bigWolf;