ShardLoveUnicorn.lua 719 B

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : Spells/Commoner/ShardLoveUnicorn.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.13 05:05:00
  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, Speed, SkillAmt)
  15. --Summons a mount to ride
  16. SetMount(Caster, 9112)
  17. SetMountColor(Caster, 255, 105, 180, 0, 0, 0)
  18. Say(Caster, "Model might not be accurate")
  19. -- Increases your ground speed by 130%
  20. AddSpellBonus(Caster, 611, Speed)
  21. end
  22. function remove(Caster, Target)
  23. SetMount(Caster, 0)
  24. RemoveSpellBonus(Caster)
  25. RemoveSkillBonus(Caster)
  26. end