Blessing_of_Lasydia.lua 514 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Blessing_of_Lasydia.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.09.25 02:09:23
  5. Script Purpose :
  6. :
  7. --]]
  8. --[[ Info from spell_display_effects (remove from script when done)
  9. *Grants water-breathing to the chosen of Lasydia.
  10. --]]
  11. function cast(Caster, Target)
  12. -- Allows target to breathe under water
  13. BreatheUnderwater(Target, true)
  14. end
  15. function remove(Caster, Target)
  16. BreatheUnderwater(Target, false)
  17. end