osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
97 lines (96 loc) • 2.71 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Nechryarch
* Wiki reference: https://oldschool.runescape.wiki/w/Nechryarch
*
* A powerful undead creature found in the Slayer Tower.
* Part of the Shade Slayer dungeon and high-level Slayer content.
* Weak to crush weapons and magic attacks.
*/
export const nechryarch = new Npc({
// Basic Identification
id: 7294,
name: "Nechryarch",
examine: "An ancient undead creature.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Nechryarch",
// Combat Level & Slayer
combatLevel: 200,
slayerLevel: 80,
slayerXp: 1510,
// Combat Stats
stats: {
hitpoints: 200,
attack: 90,
strength: 85,
defence: 90,
magic: 95,
ranged: 50,
},
// Aggressive Stats (Offensive Bonuses)
aggressiveStats: {
attackBonus: 0,
strengthBonus: 0,
magicStrengthBonus: 15,
rangedStrengthBonus: 0,
},
// Defensive Stats
defences: {
melee: {
stab: 40,
slash: 30,
crush: 10, // Weak to crush
},
magic: {
bonus: 20,
elementalWeakness: undefined,
},
ranged: {
light: 30,
standard: 30,
heavy: 30,
},
},
// Combat Mechanics
combat: {
maxHit: 30,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Magic", "Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Crush weapons", "Magic spells"],
},
// Immunities
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
// Location & Drops
locations: ["Slayer Tower"],
drops: [
// Common drops
new NpcDrop("Bones", 1, "Always"),
new NpcDrop("Dust rune", 10, "Always"),
new NpcDrop("Coins", [200, 500], "Always"),
// Uncommon drops
new NpcDrop("Ashes", 1, "1/3"),
new NpcDrop("Clue scroll (hard)", 1, "1/128"),
// Slayer Tower loot
new NpcDrop("Rune full helm", 1, "Rare"),
],
trivia: [
"Nechryarch is an undead creature, making it susceptible to Salve amulet effects",
"Weak to both crush weapons and magic spells",
"Found in the Slayer Tower alongside other undead creatures",
"Popular Slayer task for moderate experience rates",
"High magic attack makes it dangerous to unprepared players",
],
});
export default nechryarch;