SoulCannibalize.lua 733 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Defiler/SoulCannibalize.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.12 11:10:29
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, MaxVal, Pwr)
  9. -- Inflicts 23 - 28 divine damage on target instantly and every 3 seconds
  10. SpellDamage(Target, DmgType, MinVal, MaxVal)
  11. -- Increases power of caster by 26 instantly and every 3 seconds
  12. SpellHeal(Power, Pwr)
  13. end
  14. function tick(Caster, Target)
  15. -- Inflicts 23 - 28 divine damage on target instantly and every 3 seconds
  16. SpellDamage(Target, DmgType, MinVal, MaxVal)
  17. -- Increases power of caster by 26 instantly and every 3 seconds
  18. SpellHeal(Power, Pwr)
  19. end