UNPKG

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.57 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Grizzly Bear * Wiki reference: https://oldschool.runescape.wiki/w/Grizzly_bear * * A large grizzly bear found in Rellekka. */ export const grizzlyBear = new Npc({ id: 2317, name: "Grizzly bear", examine: "A large grizzly bear.", members: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Grizzly_bear", combatLevel: 57, stats: { hitpoints: 40, attack: 50, strength: 55, defence: 40, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: 15, strengthBonus: 20, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 10, slash: 10, crush: 8 }, magic: { bonus: -20, elementalWeakness: undefined }, ranged: { light: 8, standard: 8, heavy: 5 }, }, combat: { maxHit: 15, attackSpeed: 5, respawnTime: 30, isAggressive: true, 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: [ "Found in Rellekka", "Large aggressive creature", "Mid-level slayer monster", ], }); export default grizzlyBear;