DireBalm.lua 292 B

123456789101112
  1. --[[
  2. Script Name : Heal (Spell Type)
  3. Script Purpose : Generic script for healing spells
  4. Script Author : John Adams
  5. Script Date : 2013.11.19
  6. Script Note :
  7. --]]
  8. function cast(Caster, Target, HealMinVal, HealMaxVal)
  9. -- Heal Component
  10. SpellHeal("Heal", HealMinVal, HealMaxVal)
  11. end