FrenzyOrcSpell.lua 584 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Commoner/FrenzyOrcSpell.lua
  3. Script Author : neatz09
  4. Script Date : 2021.04.21 04:04:50
  5. Script Purpose :
  6. :
  7. --]]
  8. --*Increases Out-of-Combat Health Regeneration of target by 4.0
  9. --*This effect suspends during combat
  10. function cast(Caster, Target)
  11. AddProc(Target, 15, 100)
  12. end
  13. function proc(Caster, Target, Type)
  14. if Type == 15 then Say(Caster, "Test")
  15. end
  16. end
  17. function remove(Caster, Target)
  18. RemoveProc(Target)
  19. end