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.72 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Mountain Troll
* A troll from the mountains, found in Death Plateau.
* Wiki: https://oldschool.runescape.wiki/w/Mountain_Troll
*/
export const mountainTroll = new Npc({
id: 3345,
name: 'Mountain Troll',
examine: 'A troll from the mountains.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Mountain_Troll',
combatLevel: 71,
stats: {
hitpoints: 60,
attack: 50,
strength: 55,
defence: 50,
magic: 20,
ranged: 20,
},
aggressiveStats: {
attackBonus: 45,
strengthBonus: 50,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: 5, slash: 5, crush: 10 },
magic: { bonus: -20, elementalWeakness: 'None' },
ranged: { light: 0, standard: 0, heavy: 0 },
},
combat: {
maxHit: 17,
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: ['Death Plateau'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Mountain Trolls inhabit the mountainous terrain of Death Plateau.',
'They are melee-focused creatures that use crush attacks.',
'They are commonly defeated during Slayer training.',
],
});
export default MountainTroll;
)
]
});