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.77 kB
import { Npc } from '../Npc'; import { NpcDrop } from '../NpcDrop'; /** * Twisted Banshee * A corrupted banshee found in the Slayer Tower, a magical ranged creature. * Wiki: https://oldschool.runescape.wiki/w/Twisted_Banshee */ export const twistedBanshee = new Npc({ id: 7297, name: 'Twisted Banshee', examine: 'A corrupted banshee.', members: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Twisted_Banshee', combatLevel: 91, stats: { hitpoints: 80, attack: 50, strength: 45, defence: 60, magic: 80, ranged: 45, }, aggressiveStats: { attackBonus: 35, strengthBonus: 30, magicStrengthBonus: 45, rangedStrengthBonus: 0, }, defences: { melee: { stab: 10, slash: 10, crush: 15 }, magic: { bonus: 15, elementalWeakness: 'Fire' }, ranged: { light: 5, standard: 5, heavy: 5 }, }, combat: { maxHit: 20, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ['Magic'], isPoisonous: false, hasWeaponVenom: false, weaknesses: ['Fire'], }, immunities: { canBePoison: true, isPoisonous: false, canBeVenom: true, canBeCannoned: true, canBeThralled: true, }, locations: ['Slayer Tower'], drops: [ new NpcDrop(`Bones, `, 1, `1), ], trivia: [ 'Twisted Banshees are corrupted spirit creatures found in the Slayer Tower.', 'They attack primarily using dark magic and fire spells.', 'They are weak to fire due to their dark nature, creating a paradox.', ], }); export default TwistedBanshee; ) ] });