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.82 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Shayzien Crypts Skeletons
* Skeletal remains found in the Shayzien Crypts, mid-level undead warriors.
* Wiki: https://oldschool.runescape.wiki/w/Skeleton_(Shayzien_Crypts)
*/
export const shayziernCryptsSkeletons = new Npc({
id: 7298,
name: 'Shayzien Crypts Skeletons',
examine: 'Skeletal remains in the Shayzien crypts.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skeleton_(Shayzien_Crypts)',
combatLevel: 100,
stats: {
hitpoints: 80,
attack: 70,
strength: 65,
defence: 70,
magic: 20,
ranged: 20,
},
aggressiveStats: {
attackBonus: 50,
strengthBonus: 45,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 15, crush: 5 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 20,
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: ['Shayzien Crypts'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Shayzien Crypts Skeletons are found in the military crypt beneath Shayzien.',
'They are resistant to standard melee attacks.',
'They form part of the Shayzien dungeon ecosystem.',
],
});
export default ShayziernCryptsSkeletons;
)
]
});