12345678910111213141516171819202122232425262728293031323334 |
- --[[
- Script Name : Spells/Commoner/PinkUnicorn.lua
- Script Author : Skywalker646
- Script Date : 2020.05.10 06:05:27
- Script Purpose :
- :
- --]]
- function precast(Caster)
- if GetMount(Caster) > 0 then
- return false
- end
- return true
- end
- function cast(Caster, Target, Speed, SkillAmt)
- --Summons a mount to ride
- SetMount(Caster, 9112)
- SetMountColor(Caster, 255, 105, 180, 0, 0, 0)
- Say(Caster, "Model might be incorrect")
- -- Increases your ground speed by 130%
- AddSpellBonus(Caster, 611, Speed)
- end
- function remove(Caster, Target)
- SetMount(Caster, 0)
- RemoveSpellBonus(Caster)
- end
|