HealServant.lua 524 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/HealServant.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.12 03:03:07
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Heal, CureLevels)
  9. -- Heals target for 17
  10. SpellHeal("Heal", Heal)
  11. -- Dispels 6 levels of any hostile effects on target
  12. CureByType(1, 1, "", CureLevels)
  13. CureByType(1, 2, "", CureLevels)
  14. CureByType(1, 3, "", CureLevels)
  15. CureByType(1, 4, "", CureLevels)
  16. end