Virtue.lua 635 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Templar/Virtue.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.10 04:10:37
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases STR and WIS of target by 117.3
  9. function cast(Caster, Target, Stat, Mit)
  10. AddSpellBonus(Target, 0, Stat)
  11. AddSpellBonus(Target, 3, Stat)
  12. -- Increases Mitigation of target vs elemental, noxious and arcane damage by 748
  13. AddSpellBonus(Target, 201, Mit)
  14. AddSpellBonus(Target, 202, Mit)
  15. AddSpellBonus(Target, 203, Mit)
  16. end
  17. function remove(Caster, Target)
  18. RemoveSpellBonus(Target)
  19. end