Stunned.lua 419 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Commoner/Stunned.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.09.16 12:09:36
  5. Script Purpose :
  6. :
  7. --]]
  8. --[[ Info from spell_display_effects (remove from script when done)
  9. --]]
  10. function cast(Caster, Target)
  11. AddControlEffect(Caster, 5)
  12. end
  13. function remove(Caster, Target)
  14. RemoveControlEffect(Caster, 5)
  15. end