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.68 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Revenants
* Ghostly spirits of the past found in the Catacombs, undead magical entities.
* Wiki: https://oldschool.runescape.wiki/w/Revenant
*/
export const revenants = new Npc({
id: 6617,
name: 'Revenants',
examine: 'Ghostly spirits of the past.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Revenant',
combatLevel: 52,
stats: {
hitpoints: 50,
attack: 40,
strength: 42,
defence: 38,
magic: 45,
ranged: 20,
},
aggressiveStats: {
attackBonus: 30,
strengthBonus: 32,
magicStrengthBonus: 40,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 8, slash: 10, crush: 6 },
magic: { bonus: 15, elementalWeakness: 'Fire' },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 15,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Magic', 'Melee'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ['Fire'],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Catacombs'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Revenants are ghostly spirits that haunt the Catacombs.',
'They are weak to fire-based magic.',
'These spirits are immune to poison attacks.',
],
});
export default Revenants;
)
]
});