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
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Desert Lizard
* Wiki reference: https://oldschool.runescape.wiki/w/Desert_Lizard
*
* A lizard native to the Kharid Desert.
*/
export const desertLizard = new Npc({
id: 1311,
name: "Desert Lizard",
examine: "A lizard of the desert.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Desert_Lizard",
combatLevel: 22,
stats: {
hitpoints: 15,
attack: 18,
strength: 16,
defence: 12,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -15,
strengthBonus: -10,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -15, slash: -15, crush: -15 },
magic: { bonus: -25, elementalWeakness: undefined },
ranged: { light: -15, standard: -15, heavy: -15 },
},
combat: {
maxHit: 5,
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: ["Kharid Desert"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Native to the Kharid Desert",
"Adapted to hot arid climates",
"Low-level slayer creature",
],
});
export default desertLizard;