PurifyingFlames.lua 688 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Inquisitor/PurifyingFlames.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.15 09:10:35
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DoTType, MinVal, MaxVal, BonusAmt)
  9. -- Inflicts 33 - 40 heat damage on target instantly and every 4 seconds
  10. SpellDamage(Target, DoTType, MinVal, MaxVal)
  11. -- Decreases Mitigation of target vs arcane damage by 207
  12. AddSpellBonus(Target, 203, BonusAmt)
  13. end
  14. function tick(Caster, Target, DoTType, MinVal, MaxVal)
  15. SpellDamage(Target, DoTType, MinVal, MaxVal)
  16. end
  17. function remove(Caster, Target)
  18. RemoveSpellBonus(Target)
  19. end