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
872150fd
Commit
872150fd
authored
Sep 11, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
aef03d88
Pipeline
#40506
failed with stages
in 2 minutes and 12 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
20 deletions
+19
-20
expansions/script/c1300910.lua
expansions/script/c1300910.lua
+9
-10
expansions/script/c18700254.lua
expansions/script/c18700254.lua
+7
-7
expansions/script/c47330610.lua
expansions/script/c47330610.lua
+1
-1
expansions/script/c47330612.lua
expansions/script/c47330612.lua
+2
-2
No files found.
expansions/script/c1300910.lua
View file @
872150fd
...
...
@@ -11,13 +11,13 @@ function s.initial_effect(c)
e0
:
SetOperation
(
s
.
operation
)
c
:
RegisterEffect
(
e0
)
end
function
s
.
syncheckadditional
(
l
evel
)
function
s
.
syncheckadditional
(
l
v
)
return
function
(
g
)
local
sum
=
g
:
GetSum
(
Card
.
GetLevel
)
return
sum
<=
l
evel
return
sum
<=
l
v
end
end
function
s
.
syncheck
(
g
,
tp
,
syncard
)
function
s
.
syncheck
(
g
,
syncard
)
return
syncard
:
IsSynchroSummonable
(
nil
,
g
,
#
g
-
1
,
#
g
-
1
)
end
function
s
.
filter
(
c
)
...
...
@@ -34,21 +34,20 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
local
mg
=
Duel
.
GetMatchingGroup
(
s
.
filter
,
tp
,
LOCATION_GRAVE
+
LOCATION_EXTRA
,
LOCATION_GRAVE
+
LOCATION_EXTRA
,
nil
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsSynchroSummonable
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
nil
,
mg
,
nil
,
4
):
GetFirst
()
if
tc
then
local
l
evel
=
tc
:
GetLevel
()
if
not
tc
then
return
end
local
l
v
=
tc
:
GetLevel
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SMATERIAL
)
aux
.
GCheckAdditional
=
s
.
syncheckadditional
(
l
evel
)
local
sg
=
mg
:
SelectSubGroup
(
tp
,
s
.
syncheck
,
false
,
1
,
4
,
t
p
,
t
c
)
aux
.
GCheckAdditional
=
s
.
syncheckadditional
(
l
v
)
local
sg
=
mg
:
SelectSubGroup
(
tp
,
s
.
syncheck
,
false
,
1
,
4
,
tc
)
aux
.
GCheckAdditional
=
nil
if
sg
then
if
not
sg
then
return
end
tc
:
SetMaterial
(
sg
)
Duel
.
Remove
(
sg
,
POS_FACEUP
,
REASON_MATERIAL
+
REASON_SYNCHRO
)
Duel
.
BreakEffect
()
Duel
.
SpecialSummon
(
tc
,
SUMMON_TYPE_SYNCHRO
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
tc
:
CompleteProcedure
()
for
sc
in
aux
.
Next
(
sg
)
do
Duel
.
RaiseSingleEvent
(
sc
,
EVENT_BE_MATERIAL
,
e
,
REASON_SYNCHRO
,
tp
,
tp
,
0
)
Duel
.
RaiseEvent
(
sc
,
EVENT_BE_MATERIAL
,
e
,
REASON_SYNCHRO
,
tp
,
tp
,
0
)
end
end
end
end
\ No newline at end of file
expansions/script/c18700254.lua
View file @
872150fd
...
...
@@ -60,10 +60,10 @@ function cm.thop(e,tp,eg,ep,ev,re,r,rp)
local
op
=
aux
.
SelectFromOptions
(
1
-
tp
,
{
true
,
aux
.
Stringid
(
m
,
2
)},
{
true
,
aux
.
Stringid
(
m
,
3
)})
if
op
==
1
then
Duel
.
SpecialSummon
(
g2
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
if
op
==
2
then
if
op
==
1
then
Duel
.
SpecialSummon
(
g2
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
if
op
==
2
then
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_DISABLE
)
...
...
@@ -130,9 +130,9 @@ end
function
cm
.
spsumfilter2
(
c
,
e
,
tp
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
1
-
tp
)
end
function
c
1041278
.
gcheck
(
g
,
e
,
tp
,
b1
,
b2
)
return
b1
and
g
:
IsExists
(
c
1041278
.
spfilter1
,
1
,
nil
,
e
,
tp
,
g
)
or
b2
and
g
:
IsExists
(
c
1041278
.
spfilter3
,
2
,
nil
,
e
,
tp
)
function
c
m
.
gcheck
(
g
,
e
,
tp
,
b1
,
b2
)
return
b1
and
g
:
IsExists
(
c
m
.
spfilter1
,
1
,
nil
,
e
,
tp
,
g
)
or
b2
and
g
:
IsExists
(
c
m
.
spfilter3
,
2
,
nil
,
e
,
tp
)
end
function
cm
.
gcheck
(
g
,
e
,
tp
)
if
#
g
~=
2
then
return
false
end
...
...
expansions/script/c47330610.lua
View file @
872150fd
...
...
@@ -27,7 +27,7 @@ function s.peff2op(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
meff2
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_
REMOVE
+
CATEGORY_GRAVE_ACTION
)
e1
:
SetCategory
(
CATEGORY_
DESTROY
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
...
...
expansions/script/c47330612.lua
View file @
872150fd
...
...
@@ -46,7 +46,7 @@ function s.meff1(c)
c
:
RegisterEffect
(
e1
)
end
function
s
.
cpcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_SPELL
+
TYPE_TRAP
)
and
re
:
GetActivateLocation
()
==
LOCATION_
M
ZONE
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_SPELL
+
TYPE_TRAP
)
and
re
:
GetActivateLocation
()
==
LOCATION_
S
ZONE
end
function
s
.
cpcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
e
:
SetLabel
(
1
)
...
...
@@ -81,7 +81,7 @@ function s.thfilter(c)
return
c
:
IsType
(
TYPE_RITUAL
)
and
c
:
IsRace
(
RACE_PLANT
)
and
c
:
IsLevel
(
6
)
and
c
:
IsAbleToHand
()
end
function
s
.
meff2tg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
aux
.
NecroValleyFilter
(
s
.
thfilter
)
,
tp
,
LOCATION_GRAVE
+
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
thfilter
,
tp
,
LOCATION_GRAVE
+
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_GRAVE
+
LOCATION_EXTRA
)
end
function
s
.
meff2op
(
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