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';
/**
* Shadow Spider
* A dark spider found in the Catacombs with high combat stats.
* Wiki: https://oldschool.runescape.wiki/w/Shadow_spider
*/
export const shadowSpider = new Npc({
id: 3159,
name: 'Shadow spider',
examine: 'A dark spider.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Shadow_spider',
combatLevel: 149,
stats: {
hitpoints: 100,
attack: 85,
strength: 90,
defence: 80,
magic: 35,
ranged: 35,
},
aggressiveStats: {
attackBonus: 60,
strengthBonus: 65,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 12, slash: 18, crush: 8 },
magic: { bonus: -20, elementalWeakness: 'None' },
ranged: { light: 10, standard: 10, heavy: 10 },
},
combat: {
maxHit: 30,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Slash'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Shadow Spiders are dark, powerful spiders found in the Catacombs.',
'They are significantly stronger than regular spiders.',
'Their dark nature makes them formidable opponents in dungeon encounters.',
],
});
export default ShadowSpider;
)
]
});