Commit b4c75d9a authored by POLYMER's avatar POLYMER

fix

parent 4f8f3f9a
......@@ -88,10 +88,13 @@ function s.ciop(e,tp,eg,ep,ev,re,r,rp)
local g=Duel.GetChainInfo(ev,CHAININFO_TARGET_CARDS)
local tg=g:Filter(s.fi2ter,c,e,tp)
if c:IsRelateToEffect(e) and Duel.SpecialSummon(c,0,tp,tp,false,false,POS_FACEUP)>0 and #tg>0 then
local tc=tg:GetFirst()
if #tg>1 then
Duel.Hint(3,tp,520)
local sg=tg:Select(tp,1,1,nil)
Duel.HintSelection(sg)
local tc=sg:GetFirst()
tc=sg:GetFirst()
end
Duel.GetControl(tc,tp)
end
end
\ No newline at end of file
......@@ -101,6 +101,11 @@ function c75075610.op5(e,tp,eg,ep,ev,re,r,rp)
end
end
-- 3
function c75075610.cost6(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.CheckReleaseGroup(tp,Card.IsSetCard,1,nil,0x5754) end
local g=Duel.SelectReleaseGroup(tp,Card.IsSetCard,1,1,nil,0x5754)
Duel.Release(g,REASON_COST)
end
function c75075610.filter6(c,ft,tp)
return c:IsSetCard(0x5754)
and (ft>0 or (c:IsControler(tp) and c:GetSequence()<5)) and (c:IsControler(tp) or c:IsFaceup())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment