BallLightning.lua 411 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Priest/Druid/Fury/BallLightning.lua
  3. Script Author : neatz09
  4. Script Date : 2020.03.24 08:03:55
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Summons a limited pet to aid the caster
  9. function cast(Caster, Target, PetID)
  10. local x = GetX(Caster)
  11. local y = GetY(Caster)
  12. local z = GetZ(Caster)
  13. SummonDumbFirePet(Caster, Target, PetID, x, y, z)
  14. end