DeepwaterDiskScion.lua 924 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --[[
  2. Script Name : Spells/Commoner/DeepwaterDiskScion.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.04.02 08:04:50
  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, Crit, Health, Pwr, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 10984)
  17. -- Increases Crit Chance of caster by 2.0%
  18. AddSpellBonus(Caster, 654, Crit)
  19. --Increases Max Health of caster by 150.0
  20. AddSpellBonus(Caster, 606, Health)
  21. --Increases Max Power of caster by 150.0
  22. AddSpellBonus(Caster, 619, Pwr)
  23. --Increases your Ground Speed by 130%
  24. AddSpellBonus(Caster, 611, Speed)
  25. end
  26. function remove(Caster, Target)
  27. RemoveSpellBonus(Caster)
  28. RemoveSkillBonus(Caster)
  29. SetMount(Caster, 0)
  30. RemoveControlEffect(Caster, 12)
  31. end