TellurianRecruit.lua 601 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/SummonerPets/TellurianRecruit.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.02.18 11:02:22
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function attacked(NPC)
  11. SetInfoStructSInt(Spawn, "hp_regen", 13)
  12. SetInfoStructSInt(Spawn, "power_regen", 17)
  13. end
  14. function CombatReset(NPC)
  15. SetInfoStructSInt(Spawn, "hp_regen", 71)
  16. SetInfoStructSInt(Spawn, "power_regen", 54)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end