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.62 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Albino Bat
* Wiki reference: https://oldschool.runescape.wiki/w/Albino_bat
*
* A rare white-coloured variant of regular bats.
*/
export const albinoBat = new Npc({
id: 417,
name: "Albino bat",
examine: "A white-coloured bat.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Albino_bat",
combatLevel: 16,
stats: {
hitpoints: 4,
attack: 12,
strength: 8,
defence: 8,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -30,
strengthBonus: -20,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -30, slash: -30, crush: -30 },
magic: { bonus: -30, elementalWeakness: undefined },
ranged: { light: -30, standard: -30, heavy: -30 },
},
combat: {
maxHit: 2,
attackSpeed: 5,
respawnTime: 10,
isAggressive: false,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Crush"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: false,
canBeThralled: true,
},
locations: ["Swamp Lizard"],
drops: [new NpcDrop("Bat bones", 1, "Always")],
trivia: [
"Rare white-coloured variant of regular bat",
"Found in areas with swamp terrain",
"Drops bones like other bats",
],
});
export default albinoBat;