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
--During your Main Phase, if this card is in your GY because it was sent there this turn: You can target 1 face-up card you control; destroy it, and if you do, add this card to your hand
--Your opponent cannot target this card with card effects
10
+
locale1=Effect.CreateEffect(c)
11
+
e1:SetType(EFFECT_TYPE_SINGLE)
12
+
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
13
+
e1:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET)
14
+
e1:SetRange(LOCATION_MZONE)
15
+
e1:SetValue(aux.tgoval)
16
+
c:RegisterEffect(e1)
17
+
--You can banish any number of DARK monsters from your GY that cannot be Normal Summoned/Set; banish that many cards your opponent controls. This is a Quick Effect if your opponent controls more cards than you do
--If a Dinosaur Fusion Monster is on the field: You can shuffle this card from the field into the Deck, and if you do, negate the effects of 1 face-up card on the field until the end of this turn
30
+
locale3=Effect.CreateEffect(c)
31
+
e3:SetDescription(aux.Stringid(id,2))
32
+
e3:SetCategory(CATEGORY_TODECK+CATEGORY_DISABLE)
33
+
e3:SetType(EFFECT_TYPE_IGNITION)
34
+
e3:SetRange(LOCATION_MZONE)
35
+
e3:SetCountLimit(1,{id,2})
36
+
e3:SetCondition(s.discon)
37
+
e3:SetTarget(s.distg)
38
+
e3:SetOperation(s.disop)
39
+
c:RegisterEffect(e3)
40
+
end
41
+
s.listed_series={SET_GMX}
42
+
functions.spfilter(c,e,tp)
43
+
return ((c:IsRaceExcept(RACE_WARRIOR) andc:IsSetCard(SET_GMX)) or (c:IsLevelBelow(3) andc:IsRace(RACE_DINOSAUR)))
0 commit comments