123456789101112131415161718192021222324252627 |
- --[[
- Script Name : Spells/Mage/Enchanter/SignetofIntuition.lua
- Script Author : LordPazuzu
- Script Date : 2022.11.27 06:11:54
- Script Purpose :
- :
- --]]
-
- function cast(Caster, Target, BonusAmt, MitType, MitAmt)
- AddSpellBonus(Target, 2, BonusAmt)
- AddSpellBonus(Target, 4, BonusAmt)
- AddSpellBonus(Target, 208, MitAmt)
- end
- function remove(Caster, Target)
- RemoveSpellBonus(Target)
- end
|