AcidStorm.lua 409 B

123456789101112131415
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/Warlock/AcidStorm.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.16 08:10:01
  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