FavorofthePhoenix.lua 443 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Priest/Druid/FavorofthePhoenix.lua
  3. Script Author : neatz09
  4. Script Date : 2020.01.02 06:01:13
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Summon 1 Crystallized Phoenix Feather
  9. -- This effect cannot be cast during combat
  10. function cast(Caster, Target, ItemID)
  11. if IsPlayer(Target) and HasItem(Target, ItemID) then
  12. RemoveItem(Target, ItemID)
  13. end
  14. SummonItem(Target, ItemID)
  15. end