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.71 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* King Scorpion
* A large scorpion found in dungeons, known for its potent poison.
* Wiki: https://oldschool.runescape.wiki/w/King_Scorpion
*/
export const kingScorpion = new Npc({
id: 1595,
name: 'King Scorpion',
examine: 'A large scorpion.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/King_Scorpion',
combatLevel: 32,
stats: {
hitpoints: 25,
attack: 20,
strength: 18,
defence: 20,
magic: 5,
ranged: 1,
},
aggressiveStats: {
attackBonus: 32,
strengthBonus: 28,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 0, slash: -5, crush: 5 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: -5, standard: -5, heavy: -5 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Stab'],
isPoisonous: true,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: true,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Dungeon'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'King Scorpions are large scorpions with potent poison attacks.',
'They can be found in various dungeons across Gielinor.',
'Despite their size, they are relatively low-level creatures.',
],
});
export default KingScorpion;
)
]
});