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.65 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Jackal
* A wild jackal found in the deserts of Sophanem.
* Wiki: https://oldschool.runescape.wiki/w/Jackal
*/
export const jackal = new Npc({
id: 1594,
name: 'Jackal',
examine: 'A wild jackal.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Jackal',
combatLevel: 26,
stats: {
hitpoints: 20,
attack: 16,
strength: 14,
defence: 14,
magic: 5,
ranged: 8,
},
aggressiveStats: {
attackBonus: 18,
strengthBonus: 14,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -5, slash: -5, crush: 0 },
magic: { bonus: -15, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 8,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Sophanem'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Jackals are wild canines found in harsh desert environments.',
'They are non-aggressive but can be quite dangerous when provoked.',
'They are commonly hunted for their bones in Sophanem.',
],
});
export default Jackal;
)
]
});