CryofConviction.lua 760 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/CryofConviction.lua
  3. Script Author : LordPazuzu
  4. Script Date : 3/17/2023
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 34 - 57 divine damage on targets in Area of Effect
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  10. Level = GetLevel(Caster)
  11. SpellLevel = 14
  12. Mastery = SpellLevel + 10
  13. StatBonus = GetInt(Caster) / 10
  14. if Level < Mastery then
  15. LvlBonus = Level - SpellLevel
  16. else LvlBonus = Mastery - SpellLevel
  17. end
  18. DmgBonus = LvlBonus + StatBonus
  19. MaxDmg = math.floor(DmgBonus) * 2 + MaxVal
  20. MinDmg = math.floor(DmgBonus) * 2 + MinVal
  21. SpellDamage(Target, DmgType, MinDmg, MaxDmg)
  22. end