You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: official/c56588755.lua
+12-18Lines changed: 12 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@
4
4
--Substitute ID
5
5
locals,id=GetID()
6
6
functions.initial_effect(c)
7
-
--Negate 1 of opponent's monsters
7
+
--Return 1 banished Fusion, Synchro, Xyz, or Link monster to the Extra Deck, then negate the effects of 1 opponent's monster of the same type as the returned monster
8
8
locale1=Effect.CreateEffect(c)
9
-
e1:SetCategory(CATEGORY_DISABLE+CATEGORY_TODECK)
9
+
e1:SetCategory(CATEGORY_TODECK+CATEGORY_DISABLE)
10
10
e1:SetType(EFFECT_TYPE_ACTIVATE)
11
11
e1:SetCode(EVENT_FREE_CHAIN)
12
12
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
@@ -16,30 +16,31 @@ function s.initial_effect(c)
16
16
e1:SetOperation(s.activate)
17
17
c:RegisterEffect(e1)
18
18
end
19
-
--Check for a fusion, synchro, Xyz, or link monster
20
-
functions.filter1(c,tp)
19
+
--Check for a Fusion, Synchro, Xyz, or Link monster
0 commit comments