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.81 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Hell-Rat Behemoth
* A massive rat from the infernal depths of the Warped Dungeon, a creature of pure demonic nature.
* Wiki: https://oldschool.runescape.wiki/w/Hell-Rat_Behemoth
*/
export const hellRatBehemoth = new Npc({
id: 1300,
name: 'Hell-Rat Behemoth',
examine: 'A massive rat from hell.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Hell-Rat_Behemoth',
combatLevel: 275,
stats: {
hitpoints: 300,
attack: 180,
strength: 200,
defence: 160,
magic: 80,
ranged: 80,
},
aggressiveStats: {
attackBonus: 140,
strengthBonus: 160,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 40, slash: 50, crush: 35 },
magic: { bonus: 20, elementalWeakness: 'None' },
ranged: { light: 45, standard: 45, heavy: 45 },
},
combat: {
maxHit: 50,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Crush'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Warped Dungeon'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'The Hell-Rat Behemoth is one of the most dangerous creatures in the Warped Dungeon.',
'It comes from the infernal depths of the demon realm.',
'This massive rat is a manifestation of pure hellish power.',
],
});
export default HellRatBehemoth;
)
]
});