AqueousSoul.lua 379 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Mage/Summoner/AqueousSoul.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.16 10:10:22
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- Allows target to breathe under water
  10. BreatheUnderwater(Target, true)
  11. end
  12. function remove(Caster, Target)
  13. BreatheUnderwater(Target, False)
  14. end