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.57 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Araxyte
* Wiki reference: https://oldschool.runescape.wiki/w/Araxyte
*
* A small spider with glowing eyes found in Araxxor's Lair.
*/
export const araxyte = new Npc({
id: 13055,
name: "Araxyte",
examine: "A spider with glowing eyes.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Araxyte",
combatLevel: 60,
stats: {
hitpoints: 80,
attack: 55,
strength: 50,
defence: 45,
magic: 20,
ranged: 1,
},
aggressiveStats: {
attackBonus: 20,
strengthBonus: 18,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 10, crush: 5 },
magic: { bonus: -15, elementalWeakness: undefined },
ranged: { light: 5, standard: 5, heavy: 0 },
},
combat: {
maxHit: 15,
attackSpeed: 5,
respawnTime: 10,
isAggressive: false,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Slash"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Araxxor Lair"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Spider with glowing eyes",
"Found in Araxxor's Lair",
"Small arachnid",
],
});
export default araxyte;