Plague.lua 1.0 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Mystic/Plague.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.13 05:12:07
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DoTType, MinVal)
  9. -- Inflicts 6 disease damage on target instantly and every 4 seconds
  10. SpellDamage(Target, DoTType, MinVal)
  11. -- Inflicts 6 disease damage on target instantly and every 4 seconds
  12. -- If target is shadowed folk
  13. -- Inflicts 6 disease damage on target instantly and every 4 seconds
  14. -- If target is nightblood
  15. Say(Caster, "Not Implemented: Bonus damage to nightbloods and shadowed folk")
  16. end
  17. function tick(Caster, Target, DoTType, MinVal)
  18. -- Inflicts 6 disease damage on target instantly and every 4 seconds
  19. SpellDamage(Target, DoTType, MinVal)
  20. -- Inflicts 6 disease damage on target instantly and every 4 seconds
  21. -- If target is shadowed folk
  22. -- Inflicts 6 disease damage on target instantly and every 4 seconds
  23. -- If target is nightblood
  24. end