WrathoftheAncients.lua 507 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Mystic/WrathoftheAncients.lua
  3. Script Author : neatz09
  4. Script Date : 2019.09.27 10:09:01
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 130 - 159 disease damage on target encounter
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  10. if MaxVal ~= nil and MinVal < MaxVal then
  11. SpellDamage(Target, DmgType, math.random(MinVal, MaxVal))
  12. else
  13. SpellDamage(Target, DmgType, MinVal)
  14. end
  15. end