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.95 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Skeletons in the Stronghold of Security and Ancient Cavern
* Skeletal warriors found in the Stronghold of Security and Ancient Cavern.
* Wiki: https://oldschool.runescape.wiki/w/Skeleton_(Stronghold_of_Security)
*/
export const skeletonsInTheStrongholdOfSecurityAndAncientCavern = new Npc({
id: 1624,
name: 'Skeletons in the Stronghold of Security and Ancient Cavern',
examine: 'Skeletal warriors.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skeleton_(Stronghold_of_Security)',
combatLevel: 50,
stats: {
hitpoints: 40,
attack: 35,
strength: 38,
defence: 35,
magic: 15,
ranged: 15,
},
aggressiveStats: {
attackBonus: 30,
strengthBonus: 32,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 8, crush: 3 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 12,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Slash'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Stronghold of Security', 'Ancient Cavern'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'These skeletons are found in the Stronghold of Security as guards.',
'They are also encountered in the Ancient Cavern.',
'They serve as training dummies for new adventurers.',
],
});
export default SkeletonsInTheStrongholdOfSecurityAndAncientCavern;
)
]
});