FortifyElements.lua 444 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/Wizard/FortifyElements.lua
  3. Script Author : Zcoretri
  4. Script Date : 2013.09.12 15:47:05
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, PowerAmt, BonusAmt)
  9. AddSpellBonus(Target, 501, PowerAmt) -- Power
  10. AddSpellBonus(Target, 201, BonusAmt) -- vs Elemental
  11. end
  12. function remove(Caster, Target)
  13. RemoveSpellBonus(Target)
  14. end