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
--Xyz Summon procedure: 3+ Level 5 LIGHT monsters OR During your Main Phase 2, you can also Xyz Summon this card by using a "tellarknight" Xyz Monster you control as material, except "Stellarknight Constellar Diamond"
--While this card has material, neither player can send cards from the Deck to the GY
9
9
locale1=Effect.CreateEffect(c)
10
10
e1:SetType(EFFECT_TYPE_FIELD)
11
11
e1:SetCode(EFFECT_CANNOT_TO_GRAVE)
12
12
e1:SetRange(LOCATION_MZONE)
13
-
e1:SetTargetRange(LOCATION_DECK,LOCATION_DECK)
13
+
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
14
+
e1:SetTargetRange(1,1)
14
15
e1:SetCondition(s.effcon)
16
+
e1:SetTarget(s.tgfilter)
15
17
c:RegisterEffect(e1)
16
-
--
17
18
locale2=Effect.CreateEffect(c)
18
19
e2:SetType(EFFECT_TYPE_FIELD)
19
20
e2:SetCode(EFFECT_CANNOT_DISCARD_DECK)
@@ -22,7 +23,7 @@ function s.initial_effect(c)
22
23
e2:SetTargetRange(1,1)
23
24
e2:SetCondition(s.effcon)
24
25
c:RegisterEffect(e2)
25
-
--
26
+
--Any card that returns from the GY to the hand is banished instead
26
27
locale3=Effect.CreateEffect(c)
27
28
e3:SetType(EFFECT_TYPE_FIELD)
28
29
e3:SetCode(EFFECT_TO_HAND_REDIRECT)
@@ -31,7 +32,7 @@ function s.initial_effect(c)
31
32
e3:SetValue(LOCATION_REMOVED)
32
33
e3:SetCondition(s.effcon)
33
34
c:RegisterEffect(e3)
34
-
--Negate
35
+
--When an opponent's DARK monster's effect is activated (Quick Effect): You can detach 1 material from this card; negate that activation, and if you do, destroy it
35
36
locale4=Effect.CreateEffect(c)
36
37
e4:SetDescription(aux.Stringid(id,1))
37
38
e4:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
@@ -49,11 +50,14 @@ function s.ovfilter(c,tp,xyzc)
0 commit comments