UnholyCovenant.lua 537 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Necromancer/UnholyCovenant.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.07 10:12:59
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, powerBonus, mitBonus)
  9. -- Increases Max Power of group members (AE) by 20.8
  10. AddSpellBonus(Target, 619, powerBonus)
  11. -- Increases Mitigation of group members (AE) vs noxious damage by 79
  12. AddSpellBonus(Target, 202, mitBonus)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. end