QuadrortheStou.lua 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : Spells/Commoner/QuadrortheStou.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.10 07:05:09
  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, Bonus, Potency, Chance, HP, Pwr, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 631)
  17. -- Increases Crit Bonus of caster by 4.0%
  18. AddSpellBonus(Caster, 657, Bonus)
  19. -- Increases Potency of caster by 4.0%
  20. AddSpellBonus(Caster, 659, Potency)
  21. -- Increases Crit Chance of caster by 15.0%
  22. AddSpellBonus(Caster, 654, Chance)
  23. -- Increases Max Health of caster by 600.0
  24. AddSpellBonus(Caster, 606, HP)
  25. --Increases Max Power of caster by 600.0
  26. AddSpellBonus(Caster, 619, Pwr)
  27. --Increases your Ground Speed by 130%
  28. AddSpellBonus(Caster, 611, Speed)
  29. end
  30. function remove(Caster, Target)
  31. RemoveSpellBonus(Caster)
  32. SetMount(Caster, 0)
  33. end