flaskofwater.lua 407 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Commoner/flaskofwater.lua
  3. Script Author : neatz09
  4. Script Date : 2019.08.18 10:08:43
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Bonus)
  9. -- Increases Out-of-Combat Power Regeneration of target by 15.0
  10. AddSpellBonus(Target, 603, Bonus)
  11. end
  12. function remove(Caster, Target, Bonus)
  13. RemoveSpellBonus(Target)
  14. end