TeachingsoftheUnderworld.lua 537 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Necromancer/TeachingsoftheUnderworld.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.08 12:12:12
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Increases STA and INT of group members (AE) by 9.4
  10. function cast(Caster, Target, BonusAmt)
  11. AddSpellBonus(Target, 1, BonusAmt)
  12. AddSpellBonus(Target, 4, BonusAmt)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. end