ReptilianGrace.lua 364 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/ReptilianGrace.lua
  3. Script Author : neatz09
  4. Script Date : 2020.08.14 03:08:16
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Grants the skill Safefall.
  9. function cast(Caster, Target)
  10. AddControlEffect(Target, 14)
  11. end
  12. function remove(Caster, Target)
  13. RemoveControlEffect(Target, 14)
  14. end