HierophantsWisdom.lua 511 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/AA/HierophantsWisdom.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.17 02:12:35
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases WIS and STA of caster by 4.0
  9. -- Increases Mitigation of caster vs physical damage by 1050
  10. function cast(Caster, Target, Stats, Mit)
  11. AddSpellBonus(Target, 1, Stats)
  12. AddSpellBonus(Target, 3, Stats)
  13. AddSpellBonus(Target, 200, Mit)
  14. end
  15. function remove(Caster, Target)
  16. RemoveSpellBonus(Target)
  17. end