osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
67 lines (65 loc) • 1.69 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Small Lizard
* A small lizard found in the desert, a very low-level creature.
* Wiki: https://oldschool.runescape.wiki/w/Small_Lizard
*/
export const smallLizard = new Npc({
id: 1310,
name: 'Small Lizard',
examine: 'A small lizard.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Small_Lizard',
combatLevel: 12,
stats: {
hitpoints: 10,
attack: 6,
strength: 5,
defence: 5,
magic: 2,
ranged: 3,
},
aggressiveStats: {
attackBonus: 5,
strengthBonus: 4,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -3, slash: -3, crush: 0 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: -3, standard: -3, heavy: -3 },
},
combat: {
maxHit: 3,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Desert'],
drops: [
new NpcDrop(`Bones, `, 1, `2),
],
trivia: [
'Small Lizards are very weak creatures found in the desert.',
'They are non-aggressive and ideal for beginner training.',
'Their small size makes them easy prey for most adventurers.',
],
});
export default SmallLizard;
)
]
});