UnstoppableSoul.lua 573 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Necromancer/UnstoppableSoul.lua
  3. Script Author : neatz09
  4. Script Date : 2020.01.09 05:01:12
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Increases Max Health of target by 12.0%
  10. -- Increases Mitigation of target vs physical damage by 454
  11. function cast(Caster, Target, HP, Mit)
  12. AddSpellBonus(Target, 607, HP)
  13. AddSpellBonus(Target, 200, Mit)
  14. end
  15. function remove(Caster, Target)
  16. RemoveSpellBonus(Target)
  17. end