UrsineAvatar.lua 844 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Mystic/UrsineAvatar.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.13 08:12:12
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, StaAmt, WisAmt, MitAmt)
  9. -- Shapechanges caster into a bear
  10. Say(Caster, "Not Implemented: shape change and see stealth")
  11. -- Increases STA of caster by 7.7
  12. AddSpellBonus(Target, 1, StaAmt)
  13. -- Increases WIS of caster by 28.8
  14. AddSpellBonus(Target, 3, WisAmt)
  15. -- Grants See Stealth to caster
  16. -- Increases Mitigation of caster vs elemental, noxious and arcane damage by 428
  17. AddSpellBonus(Target, 201, MitAmt)
  18. AddSpellBonus(Target, 202, MitAmt)
  19. AddSpellBonus(Target, 203, MitAmt)
  20. end
  21. function remove(Caster, Target)
  22. RemoveSpellBonus(Target)
  23. end