SiphonStrength.lua 582 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/Shadowknight/SiphonStrength.lua
  3. Script Author : Dello
  4. Script Date : 18/07/2014 (Updated 9/23/19 by neatz09)
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DebuffAmt, BuffAmt)
  9. --Debuff
  10. AddSpellBonus(Target, 0, DebuffAmt)
  11. AddSpellBonus(Target, 4, DebuffAmt)
  12. --Buff Amt
  13. AddSpawnSpellBonus(Caster, 0, BuffAmt)
  14. AddSpawnSpellBonus(Caster, 4, BuffAmt)
  15. end
  16. function remove(Caster, Target)
  17. RemoveSpellBonus(Target)
  18. RemoveSpellBonus(Caster)
  19. end