DeathMarch.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/Shadowknight/DeathMarch.lua
  3. Script Author : neatz09
  4. Script Date : 2019.11.14 10:11:53
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. CastSpell(Target, 5165, GetSpellTier())
  10. AddProc(Target, 14, 100, nil, 1)
  11. end
  12. function proc(Caster, Target, Type)
  13. CastSpell(Caster, 5165, GetSpellTier())
  14. end
  15. function remove(Caster, Target)
  16. RemoveProc(Target)
  17. end
  18. -- Applies On the March. Lasts for 10.0 seconds.
  19. -- Increases INT of group members (AE) by 102.1
  20. -- Increases Ability Casting Speed of group members (AE) by 35.3%
  21. -- Increases Multi Attack of group members (AE) by 35.3
  22. -- Makes group members (AE) immune to Root, Stifle, Stun, Fear and Daze effects
  23. -- On a kill this spell will cast On the March on target. Lasts for 10.0 seconds.
  24. -- Increases INT of group members (AE) by 102.1
  25. -- Increases Ability Casting Speed of group members (AE) by 35.3%
  26. -- Increases Multi Attack of group members (AE) by 35.3
  27. -- Makes group members (AE) immune to Root, Stifle, Stun, Fear and Daze effects