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.67 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Undead One
* A sorrowful undead being found in the Catacombs of Kourend.
* Wiki: https://oldschool.runescape.wiki/w/Undead_one
*/
export const undeadOne = new Npc({
id: 1628,
name: 'Undead one',
examine: 'A sorrowful undead being.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Undead_one',
combatLevel: 30,
stats: {
hitpoints: 25,
attack: 20,
strength: 18,
defence: 15,
magic: 10,
ranged: 1,
},
aggressiveStats: {
attackBonus: 35,
strengthBonus: 30,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -5, slash: -5, crush: 0 },
magic: { bonus: -10, elementalWeakness: 'None' },
ranged: { light: -8, standard: -8, heavy: -8 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Stab'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Undead ones are found in the Catacombs of Kourend.',
'They are immune to poison but not venom.',
'They are commonly defeated during Slayer assignments.',
],
});
export default UndeadOne;
)
]
});