UNPKG

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
import { Npc } from '../Npc'; import { NpcDrop } from '../NpcDrop'; /** * Sergeant Strongstack * A sergeant of the goblin military, standing guard east of Lumbridge. * Wiki: https://oldschool.runescape.wiki/w/Sergeant_Strongstack */ export const sergeantStrongstack = new Npc({ id: 2066, name: 'Sergeant Strongstack', examine: 'A sergeant of the goblins.', members: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Sergeant_Strongstack', combatLevel: 12, stats: { hitpoints: 10, attack: 10, strength: 12, defence: 8, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: 5, strengthBonus: 8, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 0, slash: 2, crush: -2 }, magic: { bonus: -15, elementalWeakness: 'None' }, ranged: { light: 0, standard: 0, heavy: 0 }, }, combat: { maxHit: 4, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ['Melee'], isPoisonous: false, hasWeaponVenom: false, weaknesses: [], }, immunities: { canBePoison: true, isPoisonous: false, canBeVenom: true, canBeCannoned: true, canBeThralled: true, }, locations: ['East of Lumbridge'], drops: [ new NpcDrop(`Bones, `, 1, `1), ], trivia: [ 'Sergeant Strongstack is a goblin military officer.', 'He leads a group of goblin sergeants east of Lumbridge.', 'These goblins guard their encampment vigilantly.', ], }); export default SergeantStrongstack; ) ] });