KejaansInspiration.lua 402 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells\Traditions\KejaansInspiration.lua
  3. Script Purpose : Increases Strength as you level
  4. Script Author : Zcoretri
  5. Script Date : 2012.07.22
  6. --]]
  7. function cast(Caster, Target, Modifier)
  8. Level = GetLevel(Target)
  9. BonusAmt = Level * Modifier
  10. AddSpellBonus(Target, 0, BonusAmt)
  11. end
  12. function remove(Caster, Target, StatAmt)
  13. RemoveSpellBonus(Target)
  14. end