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.58 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Giant Bat * Wiki reference: https://oldschool.runescape.wiki/w/Giant_bat * * A very large bat found in Taverley Dungeon. */ export const giantBat = new Npc({ id: 416, name: "Giant bat", examine: "A very large bat.", members: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Giant_bat", combatLevel: 27, stats: { hitpoints: 15, attack: 22, strength: 18, defence: 14, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: -10, strengthBonus: -5, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: -20, slash: -20, crush: -20 }, magic: { bonus: -25, elementalWeakness: undefined }, ranged: { light: -20, standard: -20, heavy: -20 }, }, combat: { maxHit: 6, attackSpeed: 5, respawnTime: 20, isAggressive: false, isAttackable: true, attackStyles: ["Melee"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Crush"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: false, canBeThralled: true, }, locations: ["Taverley Dungeon"], drops: [new NpcDrop("Bat bones", 1, "Always")], trivia: [ "Found in Taverley Dungeon", "Larger variant of normal bat", "Drops bat bones", ], }); export default giantBat;