ProficientSwimmer.lua 383 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/ProficientSwimmer.lua
  3. Script Author : neatz09
  4. Script Date : 2020.08.14 03:08:57
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- Allows target to breathe under water
  10. BreatheUnderwater(Caster, true)
  11. end
  12. function remove(Caster, Target)
  13. BreatheUnderwater(Caster, false)
  14. end