SignetofIntuition.lua 480 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/SignetofIntuition.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.11.27 06:11:54
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, BonusAmt, MitType, MitAmt)
  9. AddSpellBonus(Target, 2, BonusAmt)
  10. AddSpellBonus(Target, 4, BonusAmt)
  11. AddSpellBonus(Target, 208, MitAmt)
  12. end
  13. function remove(Caster, Target)
  14. RemoveSpellBonus(Target)
  15. end