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';
/**
* Kalphite Worker
* A humble worker kalphite from the hive, the weakest of the kalphite hierarchy.
* Wiki: https://oldschool.runescape.wiki/w/Kalphite_worker
*/
export const kalphiteWorker = new Npc({
id: 951,
name: 'Kalphite worker',
examine: 'A worker kalphite.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Kalphite_worker',
combatLevel: 32,
stats: {
hitpoints: 20,
attack: 20,
strength: 22,
defence: 18,
magic: 5,
ranged: 5,
},
aggressiveStats: {
attackBonus: 12,
strengthBonus: 15,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 2, slash: 4, crush: 0 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 7,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Stab'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: false,
},
locations: ['Kalphite Cave'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Kalphite Workers are the lowest caste of the insect society.',
'They maintain and build structures within the hive.',
'These creatures are nonaggressive unless provoked.',
],
});
export default KalphiteWorker;
)
]
});