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.75 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Skeleton Fremennik
* A skeletal fremennik warrior with melee-focused combat abilities.
* Wiki: https://oldschool.runescape.wiki/w/Skeleton_(Fremennik)
*/
export const skeletonFremennik = new Npc({
id: 7299,
name: 'Skeleton fremennik',
examine: 'A skeletal fremennik warrior.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skeleton_(Fremennik)',
combatLevel: 100,
stats: {
hitpoints: 80,
attack: 70,
strength: 65,
defence: 70,
magic: 20,
ranged: 20,
},
aggressiveStats: {
attackBonus: 50,
strengthBonus: 45,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 10, slash: 15, crush: 5 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 5, standard: 5, heavy: 5 },
},
combat: {
maxHit: 20,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Slash'],
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: [
'Skeleton frenniks are melee-focused skeletal warriors.',
'They are found exclusively in the Catacombs of Kourend.',
'They are immune to poison but can be affected by venom.',
],
});
export default SkeletonFremennik;
)
]
});