osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
69 lines (67 loc) • 1.82 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Spindel
* A red spider boss found in the Red Spider Lair, a dangerous wilderness encounter.
* Wiki: https://oldschool.runescape.wiki/w/Spindel
*/
export const spindel = new Npc({
id: 10816,
name: 'Spindel',
examine: 'A red spider boss.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Spindel',
combatLevel: 225,
stats: {
hitpoints: 300,
attack: 150,
strength: 160,
defence: 140,
magic: 60,
ranged: 70,
},
aggressiveStats: {
attackBonus: 100,
strengthBonus: 110,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 35, slash: 50, crush: 30 },
magic: { bonus: 20, elementalWeakness: 'None' },
ranged: { light: 40, standard: 40, heavy: 40 },
},
combat: {
maxHit: 40,
attackSpeed: 5,
respawnTime: 0,
isAggressive: true,
isAttackable: true,
attackStyles: ['Slash'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Red Spider Lair'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
new NpcDrop(`, Spindel, Hide, `1, `, 8),
new NpcDrop(`Spindel Body, `, 1, `16),
],
trivia: [
'Spindel is a red spider boss found in the Red Spider Lair.',
'Its unique red coloring distinguishes it from other spider variants.',
'Defeating it provides access to rare spider-based equipment.',
],
});
export default Spindel;
)
]
});