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.69 kB
import { Npc } from '../Npc'; import { NpcDrop } from '../NpcDrop'; /** * Skotizo * A demonic shadow boss found in the Dark Catacombs, a dark ritual guardian. * Wiki: https://oldschool.runescape.wiki/w/Skotizo */ export const skotizo = new Npc({ id: 7286, name: 'Skotizo', examine: 'A demonic shadow.', members: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skotizo', combatLevel: 150, stats: { hitpoints: 200, attack: 80, strength: 75, defence: 100, magic: 120, ranged: 60, }, aggressiveStats: { attackBonus: 55, strengthBonus: 45, magicStrengthBonus: 80, rangedStrengthBonus: 0, }, defences: { melee: { stab: 20, slash: 20, crush: 25 }, magic: { bonus: 30, elementalWeakness: 'Fire' }, ranged: { light: 15, standard: 15, heavy: 15 }, }, combat: { maxHit: 35, attackSpeed: 5, respawnTime: 0, isAggressive: true, isAttackable: true, attackStyles: ['Magic'], isPoisonous: false, hasWeaponVenom: false, weaknesses: ['Fire'], }, immunities: { canBePoison: true, isPoisonious: false, canBeVenom: true, canBeCannoned: true, canBeThralled: true, }, locations: ['Dark Catacombs'], drops: [ new NpcDrop(`Arceuus Robes, `, 1, `16), ], trivia: [ 'Skotizo is a demonic shadow creature guarding dark rituals.', 'It commands powerful dark magic from the Catacombs.', 'Defeating it drops unique arcane items.', ], }); export default Skotizo; ) ] });