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.54 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Buffalo
* Wiki reference: https://oldschool.runescape.wiki/w/Buffalo
*
* A large african buffalo found in Rellekka.
*/
export const buffalo = new Npc({
id: 2319,
name: "Buffalo",
examine: "A large buffalo.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Buffalo",
combatLevel: 47,
stats: {
hitpoints: 40,
attack: 38,
strength: 45,
defence: 30,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 10,
strengthBonus: 15,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 5, crush: 5 },
magic: { bonus: -20, elementalWeakness: undefined },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 12,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Crush"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Rellekka"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Large terrestrial animal",
"Found in Rellekka area",
"Aggressive demeanor",
],
});
export default buffalo;