TheWindstalkerRumbler.lua 903 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Antonica/TheWindstalkerRumbler.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.05.15 12:05:32
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. dmgMod = math.floor(GetStr(NPC)/10)
  10. HPRegenMod = math.floor(GetSta(NPC)/10)
  11. PwRegenMod = math.floor(GetStr(NPC)/10)
  12. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_low", math.floor(185 + dmgMod))
  14. SetInfoStructUInt(NPC, "primary_weapon_damage_high", math.floor(305 + dmgMod))
  15. SetInfoStructUInt(NPC, "hp_regen_override", 1)
  16. SetInfoStructSInt(NPC, "hp_regen", 100 + HPRegenMod)
  17. SetInfoStructUInt(NPC, "pw_regen_override", 1)
  18. SetInfoStructSInt(NPC, "pw_regen", 50 + PwRegenMod)
  19. SetSpawnAnimation(NPC, 13016)
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end