Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Soulgamer
ygopro-222DIY-cards
Commits
dca67d0e
You need to sign in or sign up before continuing.
Commit
dca67d0e
authored
Jun 07, 2021
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-
parent
b3551891
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
expansions/script/c12038006.lua
expansions/script/c12038006.lua
+1
-1
expansions/script/c12038011.lua
expansions/script/c12038011.lua
+1
-1
expansions/script/c12038015.lua
expansions/script/c12038015.lua
+1
-1
expansions/script/c31300007.lua
expansions/script/c31300007.lua
+1
-1
expansions/script/c31300011.lua
expansions/script/c31300011.lua
+1
-1
expansions/script/c71400032.lua
expansions/script/c71400032.lua
+1
-1
No files found.
expansions/script/c12038006.lua
View file @
dca67d0e
...
...
@@ -7,7 +7,7 @@ function cm.initial_effect(c)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e1
:
SetCode
(
EVENT_S
PS
UMMON_SUCCESS
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetRange
(
LOCATION_HAND
)
e1
:
SetCountLimit
(
1
,
m
)
...
...
expansions/script/c12038011.lua
View file @
dca67d0e
...
...
@@ -45,7 +45,7 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e4
)
end
function
cm
.
stfilter1
(
c
,
tc
)
return
c
:
IsSynchroType
(
TYPE_TUNER
)
and
c
:
IsSetCard
(
12038011
)
and
c
:
IsPosition
(
POS_FACEUP
)
and
c
:
IsCanBeSynchroMaterial
(
tc
)
return
c
:
IsSynchroType
(
TYPE_TUNER
)
and
c
:
IsSetCard
(
0xfa6
)
and
c
:
IsPosition
(
POS_FACEUP
)
and
c
:
IsCanBeSynchroMaterial
(
tc
)
end
function
cm
.
stfilter2
(
c
,
tc
)
return
not
c
:
IsSynchroType
(
TYPE_TUNER
)
and
c
:
IsPosition
(
POS_FACEUP
)
and
c
:
IsCanBeSynchroMaterial
(
tc
)
...
...
expansions/script/c12038015.lua
View file @
dca67d0e
...
...
@@ -30,7 +30,7 @@ function cm.initial_effect(c)
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetDescription
(
aux
.
Stringid
(
m
,
1
))
e4
:
SetCategory
(
CATEGORY_DRAW
)
e4
:
SetType
(
EFFECT_TYPE_QUICK_O
+
EFFECT_TYPE_XMATERIAL
)
e4
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e4
:
SetCode
(
EVENT_FREE_CHAIN
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCountLimit
(
1
,
m
)
...
...
expansions/script/c31300007.lua
View file @
dca67d0e
...
...
@@ -10,7 +10,7 @@ function cm.initial_effect(c)
nil
,
nil
,
cm
.
restg
,
cm
.
resop
)
local
ge1
=
rsef
.
FC_Global
(
0
,
EVENT_SPSUMMON_SUCCESS
,
m
,
nil
,
cm
.
regop
)
local
e3
=
rsef
.
SV_Card
(
c
,
"atk
+"
,
cm
.
aval
,
"sr"
,
LOCATION_MZONE
)
local
e3
,
e5
=
rsef
.
SV_Card
(
c
,
"atk+,def
+"
,
cm
.
aval
,
"sr"
,
LOCATION_MZONE
)
local
e4
=
rsef
.
QO
(
c
,
nil
,
"res"
,{
1
,
m
},
"res,sp"
,
"tg"
,
LOCATION_GRAVE
,
cm
.
spcon
,
nil
,
rstg
.
target
(
cm
.
resfilter2
,
"res"
,
LOCATION_MZONE
,
LOCATION_MZONE
),
...
...
expansions/script/c31300011.lua
View file @
dca67d0e
...
...
@@ -10,7 +10,7 @@ end
cm
.
toss_dice
=
true
function
cm
.
act
(
e
,
tp
)
local
dc
=
Duel
.
TossDice
(
tp
,
1
)
local
dg
=
Duel
.
GetDecktopGroup
(
tp
,
dc
)
local
dg
=
Duel
.
GetDecktopGroup
(
tp
,
dc
*
2
)
Duel
.
ConfirmCards
(
1
-
tp
,
dg
)
local
ct
=
Duel
.
SendtoDeck
(
dg
,
1
-
tp
,
2
,
REASON_EFFECT
)
local
dct
=
math.floor
(
ct
/
6
)
...
...
expansions/script/c71400032.lua
View file @
dca67d0e
...
...
@@ -28,7 +28,7 @@ function c71400032.initial_effect(c)
--self to deck & activate field
yume
.
AddYumeFieldGlobal
(
c
,
71400032
,
2
)
end
function
c71400032
.
con
1
(
e
,
c
)
function
c71400032
.
tg
1
(
e
,
c
)
return
not
c71400032
.
filter2b
(
c
)
end
function
c71400032
.
con2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment