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
alstroemeria-silentlove
ygopro-222DIY-cards
Commits
aa830a1b
Commit
aa830a1b
authored
Oct 29, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
c2fda5dc
Pipeline
#41313
failed with stages
in 3 minutes and 47 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
expansions/script/c23100078.lua
expansions/script/c23100078.lua
+2
-2
expansions/script/c23100081.lua
expansions/script/c23100081.lua
+2
-2
expansions/script/c61200206.lua
expansions/script/c61200206.lua
+1
-1
expansions/script/c61200502.lua
expansions/script/c61200502.lua
+1
-1
No files found.
expansions/script/c23100078.lua
View file @
aa830a1b
...
...
@@ -43,13 +43,13 @@ function c23100078.tkcost(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
c23100078
.
tktg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
24400046
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
end
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
24400046
,
0
,
TYPES_TOKEN_MONSTER
+
TYPE_TUNER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOKEN
,
nil
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c23100078
.
tkop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
23100106
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
then
return
end
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
23100106
,
0
,
TYPES_TOKEN_MONSTER
+
TYPE_TUNER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
then
return
end
local
token
=
Duel
.
CreateToken
(
tp
,
23100106
)
Duel
.
SpecialSummon
(
token
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
...
...
expansions/script/c23100081.lua
View file @
aa830a1b
...
...
@@ -42,13 +42,13 @@ function c23100081.atkval(e)
end
function
c23100081
.
tktg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_SYNCHRO
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
23100106
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
end
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
23100106
,
0
,
TYPES_TOKEN_MONSTER
+
TYPE_TUNER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOKEN
,
nil
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c23100081
.
tkop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
23100106
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
then
return
end
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
23100106
,
0
,
TYPES_TOKEN_MONSTER
+
TYPE_TUNER
,
0
,
1000
,
1
,
RACE_MACHINE
,
ATTRIBUTE_EARTH
)
then
return
end
local
token
=
Duel
.
CreateToken
(
tp
,
23100106
)
Duel
.
SpecialSummon
(
token
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
...
...
expansions/script/c61200206.lua
View file @
aa830a1b
...
...
@@ -167,6 +167,6 @@ function s.op5(e,tp,eg,ep,ev,re,r,rp)
if
g
:
GetCount
()
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
local
sg
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
sg
:
SendtoDeck
(
tp
,
2
,
REASON_EFFECT
)
Duel
.
SendtoDeck
(
sg
,
tp
,
2
,
REASON_EFFECT
)
end
end
\ No newline at end of file
expansions/script/c61200502.lua
View file @
aa830a1b
...
...
@@ -111,7 +111,7 @@ function s.op3(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
local
tg
=
g
:
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
if
tg
:
GetCount
()
>
0
then
if
tg
:
GetClassCount
(
s
.
f4
)
==
3
then
if
tg
:
GetClassCount
(
s
.
f4
)
==
1
and
tg
:
GetClassCount
(
Card
.
GetCode
)
==
3
then
local
g1
=
Duel
.
GetMatchingGroup
(
s
.
f5
,
tp
,
LOCATION_DECK
,
0
,
nil
)
local
sg1
=
g1
:
RandomSelect
(
tp
,
1
)
Duel
.
SendtoHand
(
sg1
,
tp
,
REASON_EFFECT
)
...
...
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