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
--Unaffected by your opponent's activated Spell/Trap effects and by activated effects from opponent's monsters whose original Level/Rank is lower than this card's current Level
11
+
locale1=Effect.CreateEffect(c)
12
+
e1:SetType(EFFECT_TYPE_SINGLE)
13
+
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
14
+
e1:SetCode(EFFECT_IMMUNE_EFFECT)
15
+
e1:SetRange(LOCATION_MZONE)
16
+
e1:SetValue(s.immval)
17
+
c:RegisterEffect(e1)
18
+
--Add 1 "Shaddoll" card or "Void" Spell/Trap from your Deck to your hand
19
+
locale2=Effect.CreateEffect(c)
20
+
e2:SetDescription(aux.Stringid(id,0))
21
+
e2:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
22
+
e2:SetType(EFFECT_TYPE_IGNITION)
23
+
e2:SetRange(LOCATION_MZONE)
24
+
e2:SetCountLimit(1)
25
+
e2:SetCost(Cost.PayLP(800))
26
+
e2:SetTarget(s.thtg)
27
+
e2:SetOperation(s.thop)
28
+
c:RegisterEffect(e2)
29
+
--Special Summon 1 "Shaddoll" monster from your GY
--Add 2 "Shaddoll" cards from your Deck to your hand of different types (Monster, Spell, or Trap) from the revealed card and each other, then discard 1 card
--Destroy as many face-up monsters on the field as possible, and if you do, inflict damage to your opponent equal to the combined original Levels of those destroyed monsters x 200
0 commit comments