DemonstrationofFaith.lua 681 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/DemonstrationofFaith.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.03.17 04:03:05
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, Ward)
  9. Level = GetLevel(Caster)
  10. SpellLevel = 12
  11. Mastery = SpellLevel + 10
  12. StatBonus = GetWis(Caster) / 10
  13. if Level < Mastery then
  14. LvlBonus = Level - SpellLevel
  15. else LvlBonus = Mastery - SpellLevel
  16. end
  17. WardBonus = LvlBonus + StatBonus
  18. TotalWard = math.floor(WardBonus) * 2 + Ward
  19. AddWard(TotalWard, 1)
  20. end
  21. function remove(Caster, Target)
  22. RemoveWard(Ward)
  23. end