ShroudofArmor.lua 845 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Defiler/ShroudofArmor.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.13 04:03:11
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Resist, Ward)
  9. -- Increases Mitigation of group members (AE) vs physical damage by 93
  10. -- If not fighter
  11. AddSpellBonus(Target, 600, Resist, 11, 21, 31)
  12. -- Wards group members (AE) against 9 points of elemental, noxious and arcane damage
  13. AddWard(Ward, 1, 2)
  14. end
  15. function tick(Caster, Target)
  16. -- No clue on the tick time (6 sec) or amount to regen per tick, just a guess at this point
  17. AddToWard(3)
  18. end
  19. --Missing function for health over level 90
  20. --last data entry is for max health
  21. function remove(Caster, Target)
  22. RemoveSpellBonus(Target)
  23. RemoveWard()
  24. end