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.61 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Bear Cub
* Wiki reference: https://oldschool.runescape.wiki/w/Bear_cub
*
* A young bear, considerably weaker than its adult form.
*/
export const bearCub = new Npc({
id: 1599,
name: "Bear cub",
examine: "A small bear.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Bear_cub",
combatLevel: 17,
stats: {
hitpoints: 10,
attack: 13,
strength: 12,
defence: 9,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -20,
strengthBonus: -15,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -25, slash: -25, crush: -25 },
magic: { bonus: -25, elementalWeakness: undefined },
ranged: { light: -25, standard: -25, heavy: -25 },
},
combat: {
maxHit: 4,
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: ["Bear pen", "Lumberyard"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Young form of the bear",
"Found in farms and wildlife areas",
"Considerably weaker than adult bears",
],
});
export default bearCub;