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.6 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Crypt Rat * Wiki reference: https://oldschool.runescape.wiki/w/Crypt_rat * * A rat found in the haunted catacombs beneath Morytania. */ export const cryptRat = new Npc({ id: 1314, name: "Crypt rat", examine: "A rat from the crypt.", members: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Crypt_rat", combatLevel: 49, stats: { hitpoints: 25, attack: 42, strength: 32, defence: 36, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: 8, strengthBonus: 10, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 0, slash: 0, crush: 0 }, magic: { bonus: -20, elementalWeakness: undefined }, ranged: { light: 0, standard: 0, heavy: 0 }, }, combat: { maxHit: 10, attackSpeed: 5, respawnTime: 30, isAggressive: false, isAttackable: true, attackStyles: ["Melee"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Crush"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: true, canBeThralled: true, }, locations: ["Catacombs"], drops: [new NpcDrop("Bones", 1, "Always")], trivia: [ "Found in the Catacombs beneath Morytania", "Members-only dungeon creature", "Popular with mid-level slayers", ], }); export default cryptRat;