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

67 lines (65 loc) 1.66 kB
import { Npc } from '../Npc'; import { NpcDrop } from '../NpcDrop'; /** * Scurrius * A massive rat boss found in Scurrius's Lair, the king of all vermin. * Wiki: https://oldschool.runescape.wiki/w/Scurrius */ export const scurrius = new Npc({ id: 8381, name: 'Scurrius', examine: 'A massive rat boss.', members: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Scurrius', combatLevel: 225, stats: { hitpoints: 300, attack: 160, strength: 170, defence: 150, magic: 60, ranged: 70, }, aggressiveStats: { attackBonus: 110, strengthBonus: 120, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 35, slash: 45, crush: 30 }, magic: { bonus: 15, elementalWeakness: 'None' }, ranged: { light: 40, standard: 40, heavy: 40 }, }, combat: { maxHit: 40, attackSpeed: 5, respawnTime: 0, isAggressive: true, isAttackable: true, attackStyles: ['Crush'], isPoisonous: false, hasWeaponVenom: false, weaknesses: [], }, immunities: { canBePoison: true, isPoisonous: false, canBeVenom: true, canBeCannoned: true, canBeThralled: true, }, locations: ['Scurrius\'s Lair'], drops: [ new NpcDrop(`Bones, `, 1, `1), ], trivia: [ 'Scurrius is the supreme king of all rats.', 'He is a boss creature that does not respawn.', 'Located in his own named lair in the depths.', ], }); export default Scurrius; ) ] });