@@ -12,11 +12,11 @@ function s.initial_effect(c)
1212 e1 :SetOperation (s .activate )
1313 c :RegisterEffect (e1 )
1414end
15- s .listed_series = {0x10af }
15+ s .listed_series = {SET_DDD }
1616s .listed_names = {47198668 }
1717function s .filter (c ,e ,tp )
18- return c :IsType (TYPE_PENDULUM ) and c :IsSetCard (0x10af ) and c :IsCanBeSpecialSummoned (e ,0 ,tp ,false ,false )
19- and (c :IsLocation (LOCATION_GRAVE ) and c :IsCanBeEffectTarget (e ) or ( c : IsFaceup () and not c : IsHasEffect ( EFFECT_CANNOT_BE_EFFECT_TARGET ) ))
18+ return c :IsType (TYPE_PENDULUM ) and c :IsSetCard (SET_DDD ) and c :IsCanBeSpecialSummoned (e ,0 ,tp ,false ,false )
19+ and (not c :IsLocation (LOCATION_GRAVE ) or c :IsCanBeEffectTarget (e ))
2020end
2121function s .xyzfilter (c ,sg ,e ,tp )
2222 local ct =# sg
@@ -44,7 +44,7 @@ function s.rescon(mft,exft,ft)
4444end
4545function s .target (e ,tp ,eg ,ep ,ev ,re ,r ,rp ,chk ,chkc )
4646 if chkc then return false end
47- local mg = Duel .GetMatchingGroup (s .filter ,tp ,LOCATION_GRAVE + LOCATION_EXTRA ,0 ,nil ,e ,tp )
47+ local mg = Duel .GetMatchingGroup (s .filter ,tp ,LOCATION_GRAVE | LOCATION_EXTRA ,0 ,nil ,e ,tp )
4848 local ftex = Duel .GetLocationCountFromEx (tp ,tp ,nil ,TYPE_PENDULUM )
4949 local ft = Duel .GetLocationCount (tp ,LOCATION_MZONE )
5050 local ftt = Duel .GetUsableMZoneCount (tp )
@@ -69,14 +69,11 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
6969 if # sg <= 0 then return false end
7070 g = sg
7171 end
72- if Duel .SpecialSummon (g ,0 ,tp ,tp ,false ,false ,POS_FACEUP )> 0 then
73- for tc in aux .Next (g ) do
74- if tc :IsLocation (LOCATION_MZONE ) then
75- s .disop (tc ,e :GetHandler ())
76- end
72+ if Duel .SpecialSummon (g ,0 ,tp ,tp ,false ,false ,POS_FACEUP )== 0 then return end
73+ for tc in g :Iter () do
74+ if tc :IsLocation (LOCATION_MZONE ) then
75+ s .disop (tc ,e :GetHandler ())
7776 end
78- else
79- return
8077 end
8178 Duel .AdjustInstantly (c )
8279 local xyzg = Duel .GetMatchingGroup (s .xyzfilter ,tp ,LOCATION_EXTRA ,0 ,g ,g ,e ,tp )
0 commit comments