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.71 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Reanimated Bear
* A zombie bear found in the Catacombs, a reanimated undead creature.
* Wiki: https://oldschool.runescape.wiki/w/Reanimated_bear
*/
export const reanimatedBear = new Npc({
id: 1599,
name: 'Reanimated bear',
examine: 'A zombie bear.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Reanimated_bear',
combatLevel: 50,
stats: {
hitpoints: 40,
attack: 35,
strength: 38,
defence: 35,
magic: 15,
ranged: 15,
},
aggressiveStats: {
attackBonus: 30,
strengthBonus: 32,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 5, crush: 10 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 12,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Reanimated Bears are zombie bears found in the Catacombs.',
'They are immune to poison as undead creatures.',
'Their zombie state makes them stronger than living bears.',
],
});
export default ReanimatedBear;
)
]
});