EnduringBreath.lua 384 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Priest/EnduringBreath.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.14 12:12:26
  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