WailoftheBanshee.lua 628 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Scout/Bard/Dirge/WailoftheBanshee.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.12 10:10:31
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 290 - 483 disease damage on target
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal, DotType, DotMin)
  10. SpellDamage(Target, DmgType, MinVal, MaxVal)
  11. -- Applies Banshee's Scream on termination.
  12. -- Inflicts 97 disease damage on target encounter instantly and every 4 seconds
  13. SpellDamage(Target, DotType, DotMin)
  14. end
  15. function tick(Caster, Target)
  16. SpellDamage(Target, DotType, DotMin, DotMax)
  17. end