osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
67 lines (65 loc) • 1.69 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Grizzly Bear Cub
* A young grizzly bear found near Rellekka, not yet fully grown.
* Wiki: https://oldschool.runescape.wiki/w/Grizzly_bear_cub
*/
export const grizzlyBearCub = new Npc({
id: 2318,
name: 'Grizzly bear cub',
examine: 'A young grizzly bear.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Grizzly_bear_cub',
combatLevel: 17,
stats: {
hitpoints: 10,
attack: 10,
strength: 12,
defence: 8,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 5,
strengthBonus: 8,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 0, slash: 2, crush: -2 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 4,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Rellekka'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Grizzly Bear Cubs are young versions of the fearsome grizzly.',
'Found near Rellekka in the snowy north.',
'Cubs are much weaker than their parents.',
],
});
export default GrizzlyBearCub;
)
]
});