Commit 5c83efa1 authored by POLYMER's avatar POLYMER

fix

parent e7f2dad4
......@@ -57,7 +57,7 @@ function c9310007.spop(e,tp,eg,ep,ev,re,r,rp)
local kg2=kg:Select(tp,1,1,nil)
local sc=kg2:GetFirst()
local sg1=sg:SelectSubGroup(tp,c9310007.mtfilter,false,1,#sg,kc,sc)
sg1:Merge(kc)
sg1:Merge(Group.FromCards(kc))
sc:SetMaterial(sg1)
Duel.BreakEffect()
Duel.SynchroSummon(tp,sc,nil,sg1)
......
......@@ -73,10 +73,16 @@ function c9910066.activate(e,tp,eg,ep,ev,re,r,rp)
if Duel.SSet(tp,tc1)~=0 then
local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_TRAP_ACT_IN_SET_TURN)
e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
e1:SetCode(EFFECT_QP_ACT_IN_SET_TURN)
e1:SetReset(RESET_EVENT+RESETS_STANDARD)
tc1:RegisterEffect(e1)
local e2=Effect.CreateEffect(e:GetHandler())
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
e2:SetCode(EFFECT_TRAP_ACT_IN_SET_TURN)
e2:SetReset(RESET_EVENT+RESETS_STANDARD)
tc1:RegisterEffect(e2)
end
end
end
......
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