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.77 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Spiritual Warrior
* A warrior servant of the gods found in the God Wars Dungeon.
* Wiki: https://oldschool.runescape.wiki/w/Spiritual_warrior
*/
export const spiritualWarrior = new Npc({
id: 2215,
name: 'Spiritual warrior',
examine: 'A warrior servant of the gods.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Spiritual_warrior',
combatLevel: 120,
stats: {
hitpoints: 100,
attack: 95,
strength: 100,
defence: 90,
magic: 40,
ranged: 40,
},
aggressiveStats: {
attackBonus: 70,
strengthBonus: 75,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 20, slash: 20, crush: 25 },
magic: { bonus: -10, elementalWeakness: 'None' },
ranged: { light: 15, standard: 15, heavy: 15 },
},
combat: {
maxHit: 30,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Stab'],
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 Warriors are melee-focused divine warriors in the God Wars Dungeon.',
'They are divine servants dedicated to combat and protection.',
'They require high combat stats to defeat efficiently.',
],
});
export default SpiritualWarrior;
)
]
});