NoxiousEfflux.lua 524 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Defiler/NoxiousEfflux.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.13 05:03:17
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Sta, Nox)
  9. -- Increases STA of group members (AE) by 3.0
  10. AddSpellBonus(Target, 1, BonusAmt)
  11. -- Increases Mitigation of group members (AE) vs noxious damage by 194
  12. AddSpellBonus(Target, 202, Nox)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. end