AspectoftheForest.lua 638 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Priest/Druid/Warden/AspectoftheForest.lua
  3. Script Author : theFoof
  4. Script Date : 2013.12.09 11:12:18
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases STA of target
  9. -- Increases WIS of target
  10. -- Increases Mitigation of target vs elemental, noxious and arcane damage
  11. function cast(Caster, Target, Sta, Wis, Mit)
  12. AddSpellBonus(Target, 1, Sta)
  13. AddSpellBonus(Target, 3, Wis)
  14. AddSpellBonus(Target, 201, Mit)
  15. AddSpellBonus(Target, 202, Mit)
  16. AddSpellBonus(Target, 203, Mit)
  17. end
  18. function remove(Caster, Target)
  19. RemoveSpellBonus(Target)
  20. end