ration.lua 403 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Commoner/ration.lua
  3. Script Author : neatz09
  4. Script Date : 2019.08.19 12:08:40
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Bonus)
  9. -- Increases Out-of-Combat Health Regeneration of target by 4.0
  10. AddSpellBonus(Target, 602, Bonus)
  11. end
  12. function remove(Caster, Target, Bonus)
  13. RemoveSpellBonus(Target)
  14. end