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

60 lines (59 loc) 1.62 kB
import { Npc } from '../Npc'; /** * Lobstrosity * A giant lobster creature found in the Wilderness, a large aquatic boss. * Wiki: https://oldschool.runescape.wiki/w/Lobstrosity */ export const lobstrosity = new Npc({ id: 1596, name: 'Lobstrosity', examine: 'A giant lobster creature.', members: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Lobstrosity', combatLevel: 225, stats: { hitpoints: 250, attack: 140, strength: 150, defence: 130, magic: 50, ranged: 60, }, aggressiveStats: { attackBonus: 90, strengthBonus: 100, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 30, slash: 40, crush: 25 }, magic: { bonus: 10, elementalWeakness: 'None' }, ranged: { light: 35, standard: 35, heavy: 35 }, }, combat: { maxHit: 40, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ['Stab'], isPoisonous: false, hasWeaponVenom: false, weaknesses: [], }, immunities: { canBePoison: true, isPoisonous: false, canBeVenom: true, canBeCannoned: true, canBeThralled: true, }, locations: ['Wilderness'], drops: [], trivia: [ 'Lobstrosity is a giant aquatic beast from the Wilderness.', 'It is one of the larger creatures that can be encountered.', 'Its size and strength make it a formidable foe.', ], }); export default lobstrosity;