AncestralMettle.lua 538 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Mystic/AncestralMettle.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.13 08:12:20
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, StatAmt, ResistAmt)
  9. -- Increases STA of group members (AE) by 3.0
  10. AddSpellBonus(Target, 1, StatAmt)
  11. -- Increases Mitigation of group members (AE) vs noxious damage by 194
  12. AddSpellBonus(Target, 202, ResistAmt)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. end