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.79 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Thrower Troll
* A ranged-focused troll that throws rocks, found in Fremennik Isles.
* Wiki: https://oldschool.runescape.wiki/w/Thrower_Troll
*/
export const throwerTroll = new Npc({
id: 4678,
name: 'Thrower Troll',
examine: 'A troll that throws rocks.',
members: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Thrower_Troll',
combatLevel: 150,
stats: {
hitpoints: 120,
attack: 90,
strength: 85,
defence: 85,
magic: 45,
ranged: 95,
},
aggressiveStats: {
attackBonus: 70,
strengthBonus: 65,
magicStrengthBonus: 0,
rangedStrengthBonus: 60,
},
defences: {
melee: { stab: 10, slash: 10, crush: 15 },
magic: { bonus: -25, elementalWeakness: 'None' },
ranged: { light: 15, standard: 15, heavy: 15 },
},
combat: {
maxHit: 35,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ['Melee', 'Ranged'],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
locations: ['Fremennik Isles'],
drops: [
new NpcDrop(`Bones, `, 1, `1),
],
trivia: [
'Thrower Trolls are ranged-focused trolls that throw rocks as weapons.',
'They are more dangerous than regular Ice Trolls due to their ranged attacks.',
'They require high Defence to efficiently fight without taking damage.',
],
});
export default ThrowerTroll;
)
]
});