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
--If this card is Link Summoned, or at the end of the Damage Step if this card battled: Destroy as many monsters your opponent controls as possible, then inflict 300 damage to your opponent for each Link Monster in your GY
--Reveal the top card of your Deck, and if it is a monster, your opponent takes any effect damage you would have taken this turn instead. Otherwise, you take 4000 damage
57
+
Duel.ConfirmDecktop(tp,1)
58
+
iftop_card:IsMonster() then
59
+
--Your opponent takes any effect damage you would have taken this turn instead
--You can reveal this card in your hand; immediately after this effect resolves, Normal Summon 1 "Dark Tuner" monster
7
+
locale1=Effect.CreateEffect(c)
8
+
e1:SetDescription(aux.Stringid(id,0))
9
+
e1:SetCategory(CATEGORY_SUMMON)
10
+
e1:SetType(EFFECT_TYPE_IGNITION)
11
+
e1:SetRange(LOCATION_HAND)
12
+
e1:SetCountLimit(1,id)
13
+
e1:SetCost(Cost.SelfReveal)
14
+
e1:SetTarget(s.nstg)
15
+
e1:SetOperation(s.nsop)
16
+
c:RegisterEffect(e1)
17
+
--Once per turn, if you control this Normal Summoned/Set card: You can Tribute both this face-up card and 1 face-up non-Tuner with a lower Level, and if you do, Special Summon 1 Synchro Monster from your Extra Deck with a Level equal to the difference in Levels of those monsters (this is treated as a Synchro Summon), then you can destroy 1 card your opponent controls
--You can send 4 monsters with 2400 or more ATK and 1000 DEF from your hand, Deck, and/or face-up field to the GY; Special Summon this card from your hand
8
+
locale1=Effect.CreateEffect(c)
9
+
e1:SetDescription(aux.Stringid(id,0))
10
+
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
11
+
e1:SetType(EFFECT_TYPE_IGNITION)
12
+
e1:SetRange(LOCATION_HAND)
13
+
e1:SetCost(s.selfspcost)
14
+
e1:SetTarget(s.selfsptg)
15
+
e1:SetOperation(s.selfspop)
16
+
e1:SetCountLimit(1,{id,0})
17
+
c:RegisterEffect(e1)
18
+
--You can target 1 Spell/Trap on each field; destroy them, then Special Summon 1 "Homunculus Token" (Fairy/LIGHT/Level 2/ATK 800/DEF 800) to both players' fields in Defense Position, and if you do, this card gains 1600 ATK
0 commit comments