BlessingofthePaladin.lua 703 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/Paladin/BlessingofthePaladin.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.01 06:10:03
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases STA of caster by 25.1
  9. -- Increases STR of caster by 42.3
  10. -- Increases Mitigation of caster vs elemental, noxious and arcane damage by 1106
  11. function cast(Caster, Target, Sta, Str, Mit)
  12. AddSpellBonus(Target, 1, Sta)--Sta
  13. AddSpellBonus(Target, 0, Str)--Str
  14. AddSpellBonus(Target, 201, Mit)
  15. AddSpellBonus(Target, 202, Mit)
  16. AddSpellBonus(Target, 203, Mit)
  17. end
  18. function remove(Caster, Target, Sta, Str, Mit)
  19. RemoveSpellBonus(Target)
  20. end