SteedBlazingSun.lua 705 B

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : Spells/Commoner/SteedBlazingSun.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.14 08:05:02
  5. Script Purpose :
  6. :
  7. --]]
  8. function precast(Caster)
  9. if GetMount(Caster) > 0 then
  10. return false
  11. end
  12. return true
  13. end
  14. function cast(Caster, Target, Potency, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 14054)
  17. --Increases Potency of caster by 2.0%
  18. AddSpellBonus(Caster, 659, Potency)
  19. --Increases your Ground Speed by 130%
  20. AddSpellBonus(Caster, 611, Speed)
  21. end
  22. function remove(Caster, Target)
  23. RemoveSpellBonus(Caster)
  24. RemoveSkillBonus(Caster)
  25. SetMount(Caster, 0)
  26. end