Mend.lua 514 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Fighter/Brawler/Monk/Mend.lua
  3. Script Author : Dello
  4. Script Date : 19/07/2014
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, MinVal, MaxVal, CureLvls)
  9. SpellHeal("Heal", MinVal, MaxVal, 0, 2, 1)
  10. -- This effect cannot be critically applied.
  11. -- The healing of this spell cannot be modified except by direct means
  12. -- Dispels 7 levels of noxious hostile effects on target
  13. CureByType(CureLvls, 3);
  14. end