SwampBreath.lua 389 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Commoner/SwampBreath.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.05.11 04:05:00
  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