We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5584ae commit 16081a9Copy full SHA for 16081a9
1 file changed
official/c44886582.lua
@@ -46,7 +46,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
46
if sc and Duel.SpecialSummon(sc,0,tp,tp,false,false,POS_FACEUP)>0 then
47
sc:NegateEffects(e:GetHandler())
48
Duel.BreakEffect()
49
- local fusion_params={matfilter=Fusion.OnFieldMat,extrafil=s.fextra(tc,sc),exactcount=2}
+ local fusion_params={matfilter=Fusion.OnFieldMat,extrafil=s.fextra(tc),exactcount=2,gc=Group.FromCards(tc,sc)}
50
local b1=Fusion.SummonEffTG(fusion_params)(e,tp,eg,ep,ev,re,r,rp,0)
51
local b2=sc:IsAbleToGrave()
52
local op=Duel.SelectEffect(tp,
@@ -59,13 +59,8 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
59
end
60
61
62
-function s.fextra(tc,sc)
+function s.fextra(tc)
63
return function(e,tp,mg)
64
- return Group.FromCards(tc),s.fcheck(Group.FromCards(tc,sc))
65
- end
66
-end
67
-function s.fcheck(g)
68
- return function(tp,sg,fc)
69
- return g:Includes(sg)
+ return Group.FromCards(tc)
70
71
0 commit comments