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.73 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Sulphur Lizard
* A lizard filled with sulphur found in Karuulm Dungeon.
* Wiki: https://oldschool.runescape.wiki/w/Sulphur_Lizard
*/
export const sulphurLizard = new Npc({
id: 1312,
name: 'Sulphur Lizard',
examine: 'A lizard filled with sulphur.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Sulphur_Lizard',
combatLevel: 25,
stats: {
hitpoints: 20,
attack: 14,
strength: 12,
defence: 12,
magic: 5,
ranged: 8,
},
aggressiveStats: {
attackBonus: 12,
strengthBonus: 10,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 0, slash: -2, crush: 5 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: -5, standard: -5, heavy: -5 },
},
combat: {
maxHit: 6,
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: ['Karuulm Dungeon'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Sulphur Lizards are low-level lizard creatures covered in sulphur.',
'They are non-aggressive but can be hunted for practice.',
'They are often used by newer players for training purposes.',
],
});
export default SulphurLizard;
)
]
});