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/c28126717.lua
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,19 @@ function s.initial_effect(c)
8
8
e1:SetType(EFFECT_TYPE_ACTIVATE)
9
9
e1:SetCode(EVENT_FREE_CHAIN)
10
10
c:RegisterEffect(e1)
11
-
--Reveal
11
+
--Reveal 1 Level 1 "Floowandereeze" monster in your hand and banish 1 "Floowandereeze" card with a different name from your Deck then immediately after this effect resolves, Normal Summon the revealed monster
12
12
locale2=Effect.CreateEffect(c)
13
+
e2:SetDescription(aux.Stringid(id,0))
13
14
e2:SetCategory(CATEGORY_SUMMON+CATEGORY_REMOVE)
14
15
e2:SetType(EFFECT_TYPE_IGNITION)
15
16
e2:SetRange(LOCATION_FZONE)
16
17
e2:SetCountLimit(1,id)
17
18
e2:SetTarget(s.rmtg)
18
19
e2:SetOperation(s.rmop)
19
20
c:RegisterEffect(e2)
20
-
--Normal on normal
21
+
--Immediately after this effect resolves, Normal Summon 1 "Floowandereeze" monster
Copy file name to clipboardExpand all lines: official/c28534130.lua
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,19 @@
3
3
--Scripted by Eerie Code
4
4
locals,id=GetID()
5
5
functions.initial_effect(c)
6
-
--Special summon 1 "Salamangreat" monster from hand, then link summon 1 "Salamangreat" monster
6
+
--Special Summon 1 "Salamangreat" monster from hand, then Link Summon 1 "Salamangreat" Link Monster using materials you control, including the Summoned monster
7
7
locale1=Effect.CreateEffect(c)
8
+
e1:SetDescription(aux.Stringid(id,0))
8
9
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
9
10
e1:SetType(EFFECT_TYPE_ACTIVATE)
10
11
e1:SetCode(EVENT_FREE_CHAIN)
11
12
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
12
13
e1:SetTarget(s.target)
13
14
e1:SetOperation(s.activate)
14
15
c:RegisterEffect(e1)
15
-
--Return 1 "Salamangreat" link monster to extra deck
16
+
--Return 1 "Salamangreat" Link Monster from your GY to the Extra Deck
0 commit comments