Bladeweaver.lua 884 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : Spells/Scout/Rogue/Swashbuckler/Bladeweaver.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.16 01:12:03
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Sta, Agi, Avoid, Phys, NonPhys)
  9. -- Increases STA of caster by 0.7
  10. AddSpellBonus(Target, 1, Sta)
  11. -- Increases AGI of caster by 15.0
  12. AddSpellBonus(Target, 2, Agi)
  13. -- Adds 14.0% to base avoidance.
  14. AddSpellBonus(Target, 696, Avoid)
  15. -- Increases Mitigation of caster vs physical damage by 82
  16. AddSpellBonus(Target, 200, Phys)
  17. -- Increases Mitigation of caster vs elemental, noxious and arcane damage by 183
  18. AddSpellBonus(Target, 201, NonPhys)
  19. AddSpellBonus(Target, 202, NonPhys)
  20. AddSpellBonus(Target, 203, NonPhys)
  21. end
  22. function remove(Caster, Target)
  23. RemoveSpellBonus(Target)
  24. end