WarringDeities.lua 638 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Templar/WarringDeities.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.10 04:10:32
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Inflicts 58 - 71 divine damage on target
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal, DotType, DotMin, DotMax)
  11. SpellDamage(Target, DmgType, MinVal, MaxVal)
  12. end
  13. -- Inflicts 24 - 30 divine damage on target every 4 seconds
  14. function tick(Caster, Target)
  15. SpellDamage(Target, DotType, DotMin, DotMax)
  16. end
  17. function remove(Caster, Target)
  18. end