amenderShiftBossLocal858.lua 673 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/TheThievesWay_Classic/amenderShiftBossLocal858.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.12.06 05:12:10
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/Pipefitters.lua")
  9. function spawn(NPC)
  10. dmgMod = GetStr(NPC)/10
  11. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  12. SetInfoStructUInt(NPC, "primary_weapon_damage_low", math.floor(7 + dmgMod))
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_high", math.floor(15 + dmgMod))
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end