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.61 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Grimy Lizard * Wiki reference: https://oldschool.runescape.wiki/w/Grimy_Lizard * * A lizard covered in grime found in Karuulm Dungeon. */ export const grimyLizard = new Npc({ id: 1313, name: "Grimy Lizard", examine: "A lizard covered in grime.", members: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Grimy_Lizard", combatLevel: 28, stats: { hitpoints: 25, attack: 24, strength: 22, defence: 18, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: 0, strengthBonus: 5, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: -10, slash: -10, crush: -10 }, magic: { bonus: -25, elementalWeakness: undefined }, ranged: { light: -10, standard: -10, heavy: -10 }, }, combat: { maxHit: 7, 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: ["Karuulm Dungeon"], drops: [new NpcDrop("Bones", 1, "Always")], trivia: [ "Found in Karuulm Dungeon", "Lizard covered in grime", "Low-level encounter", ], }); export default grimyLizard;