Knockdown.lua 439 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Commoner/Knockdown.lua
  3. Script Author : John Adams
  4. Script Date : 2013.11.22 01:11:34
  5. Script Purpose : Apply Knockdown
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. --Throws target back
  10. --Stuns target
  11. AddControlEffect(Target, 4)
  12. --Blurs vision of target (to do)
  13. --Except Epic
  14. end
  15. function remove(Caster, Target)
  16. RemoveControlEffect(Target, 4)
  17. end