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';
/**
* Giant Crypt Spider
* A large spider from the Catacombs, dwelling in dark webbed chambers.
* Wiki: https://oldschool.runescape.wiki/w/Giant_crypt_spider
*/
export const giantCryptSpider = new Npc({
id: 1316,
name: 'Giant crypt spider',
examine: 'A large spider from the crypt.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Giant_crypt_spider',
combatLevel: 126,
stats: {
hitpoints: 100,
attack: 85,
strength: 90,
defence: 80,
magic: 35,
ranged: 35,
},
aggressiveStats: {
attackBonus: 60,
strengthBonus: 70,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 15, crush: 8 },
magic: { bonus: -10, elementalWeakness: 'None' },
ranged: { light: 8, standard: 8, heavy: 8 },
},
combat: {
maxHit: 28,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Slash'],
isPoisonous: true,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: true,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Giant Crypt Spiders are found in the Catacombs of Kourend.',
'They spin webs throughout the crypt chambers.',
'These spiders are poisonous hunters of the dark.',
],
});
export default GiantCryptSpider;
)
]
});