SacredArmorWithStaBonus.lua 707 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Inquisitor/SacredArmorWithStaBonus.lua
  3. Script Author : neatz09
  4. Script Date : 2020.10.27 10:10:26
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases Mitigation of group members (AE) vs physical damage by 1070
  9. -- Increases the health of group members by 3.24 for each point of stamina
  10. -- Increases the health of fighters in the group by 3.24 for each point of stamina
  11. function cast(Caster, Target, MitAmt, StaAmt)
  12. HealthMod = GetStaBase(Target) * StaAmt
  13. AddSpellBonus(Target, 200, MitAmt, 11, 21, 31)
  14. AddSpellBonus(Target, 500, HealthMod, 1)
  15. end
  16. function remove(Caster, Target)
  17. RemoveSpellBonus(Target)
  18. end