Salvation.lua 595 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Commoner/Salvation.lua
  3. Script Author : neatz09
  4. Script Date : 2020.10.27 12:10:49
  5. Script Purpose :
  6. :
  7. --]]
  8. -- On death this spell will cast Salvation on target. Lasts for 36.0 seconds.
  9. -- Heals target for 512
  10. -- Increases Mitigation of target vs physical damage by 369
  11. -- Grants a total of 1 trigger of the spell.
  12. function cast(Caster, Target, Healz, Mitz)
  13. SpellHeal("Heal", Healz)
  14. AddSpellBonus(Target, 200, Mitz)
  15. end
  16. function remove(Caster, Target)
  17. RemoveSpellBonus(Target)
  18. end