LegioneerGorlak.lua 724 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/BloodSkullValleyMaulicsStronghold/LegioneerGorlak.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.01.23 10:01:23
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. dmgMod = GetStr(NPC)/10
  11. Named(NPC)
  12. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_low", math.floor(45 + dmgMod))
  14. SetInfoStructUInt(NPC, "primary_weapon_damage_high", math.floor(85 + dmgMod))
  15. Bloodskull(NPC)
  16. OrcChainCommon(NPC)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end