SignofPacification.lua 379 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Templar/SignofPacification.lua
  3. Script Purpose : Templar control effect
  4. Script Author : theFoof
  5. Script Date : 2014.3.9
  6. --]]
  7. function cast(Caster, Target)
  8. if not IsEpic(Target) then
  9. AddControlEffect(Target, 3) --Daze effect
  10. end
  11. end
  12. function remove(Caster, Target)
  13. RemoveControlEffect(Target, 3)
  14. end