LichSiphoning.lua 484 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Commoner/LichSiphoning.lua
  3. Script Author : neatz09
  4. Script Date : 2020.09.29 11:09:16
  5. Script Purpose :
  6. :
  7. --]]
  8. -- On a hostile spell cast this spell will cast Lich's Siphoning on target of spell.
  9. -- Inflicts 72 disease damage on target
  10. -- Heals caster for 48
  11. function cast(Caster, Target, DmgType, Dmg, HealAmt)
  12. SpellDamage(Target, DmgType, Dmg)
  13. SpellHeal("Heal", HealAmt, Nil, Caster)
  14. end