TelliruanRecruitApprentice1.lua 559 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/SummonerPets/TelliruanRecruitApprentice1.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.11.12 08:11:52
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC, Spawn)
  9. end
  10. function attacked(NPC)
  11. SetInfoStructSInt(Spawn, "hp_regen", 9)
  12. SetInfoStructSInt(Spawn, "power_regen", 12)
  13. end
  14. function CombatReset(NPC)
  15. SetInfoStructSInt(Spawn, "hp_regen", 37)
  16. SetInfoStructSInt(Spawn, "power_regen", 22)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end