SplinterofEssence.lua 416 B

123456789101112131415
  1. --[[
  2. Script Name : Spells/Mage/Summoner/SplinterofEssence.lua
  3. Script Author : neatz09
  4. Script Date : 2020.11.07 01:11:14
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Summon 1 Splinter of Essence (Apprentice I)
  9. function cast(Caster, Target, ItemID)
  10. if IsPlayer(Target) and HasItem(Target, ItemID) then
  11. RemoveItem(Target, ItemID)
  12. end
  13. SummonItem(Target, ItemID, 1)
  14. end