NajenasEssenceSummoning.lua 412 B

1234567891011121314
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/NajenasEssenceSummoning.lua
  3. Script Author : Neatz09
  4. Script Date : 10/16/19
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, ItemID)
  9. -- Summon 1 Shard of Esssence (Apprentice)
  10. if IsPlayer(Target) and HasItem(Target, ItemID) then
  11. RemoveItem(Target, ItemID)
  12. end
  13. SummonItem(Target, ItemID, 1)
  14. end