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.73 kB
JavaScript
import { Npc } from '../Npc';
import { NpcDrop } from '../NpcDrop';
/**
* Sergeant Steelwill
* A sergeant of the goblin military, standing guard east of Lumbridge.
* Wiki: https://oldschool.runescape.wiki/w/Sergeant_Steelwill
*/
export const sergeantSteelwill = new Npc({
id: 2067,
name: 'Sergeant Steelwill',
examine: 'A sergeant of the goblins.',
members: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Sergeant_Steelwill',
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 Steelwill is a goblin military officer.',
'He leads a group of goblin sergeants east of Lumbridge.',
'These goblins guard their encampment vigilantly.',
],
});
export default SergeantSteelwill;
)
]
});