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.72 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Kalphite Soldier
* A warrior kalphite of the hive, more powerful than workers.
* Wiki: https://oldschool.runescape.wiki/w/Kalphite_soldier
*/
export const kalphiteSoldier = new Npc({
id: 954,
name: 'Kalphite soldier',
examine: 'A warrior kalphite.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Kalphite_soldier',
combatLevel: 49,
stats: {
hitpoints: 40,
attack: 38,
strength: 40,
defence: 35,
magic: 10,
ranged: 10,
},
aggressiveStats: {
attackBonus: 25,
strengthBonus: 30,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 8, crush: 2 },
magic: { bonus: -10, elementalWeakness: 'None' },
ranged: { light: 2, standard: 2, heavy: 2 },
},
combat: {
maxHit: 10,
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 Soldiers are mid-level warriors of the insect hive.',
'Stronger than workers but weaker than guardians.',
'These creatures defend the inner chambers of the cave.',
],
});
export default KalphiteSoldier;
)
]
});