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.74 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Spiritual Ranger
* A ranger servant of the gods found in the God Wars Dungeon.
* Wiki: https://oldschool.runescape.wiki/w/Spiritual_ranger
*/
export const spiritualRanger = new Npc({
id: 2214,
name: 'Spiritual ranger',
examine: 'A ranger servant of the gods.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Spiritual_ranger',
combatLevel: 120,
stats: {
hitpoints: 100,
attack: 75,
strength: 65,
defence: 90,
magic: 40,
ranged: 95,
},
aggressiveStats: {
attackBonus: 55,
strengthBonus: 45,
magicStrengthBonus: 0,
rangedStrengthBonus: 70,
},
defences: {
melee: { stab: 20, slash: 20, crush: 25 },
magic: { bonus: -10, elementalWeakness: 'None' },
ranged: { light: 20, standard: 20, heavy: 20 },
},
combat: {
maxHit: 30,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Ranged'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['God Wars Dungeon'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Spiritual Rangers are ranged specialists serving the gods.',
'They attack from range using bow and arrows.',
'They require high Ranged and Defence to defeat effectively.',
],
});
export default SpiritualRanger;
)
]
});