osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
62 lines (61 loc) • 1.61 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Giant Spider
* Wiki reference: https://oldschool.runescape.wiki/w/Giant_spider
*
* A very large spider found in Yanille Dungeon and other locations.
*/
export const giantSpider = new Npc({
id: 1005,
name: "Giant spider",
examine: "A very large spider.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Giant_spider",
combatLevel: 42,
stats: {
hitpoints: 30,
attack: 38,
strength: 35,
defence: 28,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 5,
strengthBonus: 8,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -5, slash: -5, crush: -5 },
magic: { bonus: -20, elementalWeakness: undefined },
ranged: { light: -5, standard: -5, heavy: -5 },
},
combat: {
maxHit: 10,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Slash"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Yanille Dungeon"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found in Yanille Dungeon",
"Very large arachnid",
"Vulnerable to slash attacks",
],
});
export default giantSpider;