Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
3
Merge Requests
3
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
MyCard
ygopro-scripts-888
Commits
fe1427c4
Commit
fe1427c4
authored
Dec 31, 2025
by
mercury233
Committed by
GitHub
Dec 31, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update gc usage in aux.AddSynchroMixProcedure (#3094)
parent
4bdae2df
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
16 deletions
+9
-16
c40939228.lua
c40939228.lua
+3
-5
c84343351.lua
c84343351.lua
+6
-11
No files found.
c40939228.lua
View file @
fe1427c4
...
@@ -4,7 +4,7 @@ function c40939228.initial_effect(c)
...
@@ -4,7 +4,7 @@ function c40939228.initial_effect(c)
aux
.
AddMaterialCodeList
(
c
,
21159309
)
aux
.
AddMaterialCodeList
(
c
,
21159309
)
aux
.
AddCodeList
(
c
,
44508094
)
aux
.
AddCodeList
(
c
,
44508094
)
--synchro summon
--synchro summon
aux
.
AddSynchroMixProcedure
(
c
,
aux
.
Tuner
(
Card
.
IsCode
,
21159309
),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
99
,
c40939228
.
syncheck
(
c
)
)
aux
.
AddSynchroMixProcedure
(
c
,
aux
.
Tuner
(
Card
.
IsCode
,
21159309
),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
99
,
c40939228
.
syncheck
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--special summon condition
--special summon condition
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
@@ -50,10 +50,8 @@ c40939228.material_type=TYPE_SYNCHRO
...
@@ -50,10 +50,8 @@ c40939228.material_type=TYPE_SYNCHRO
function
c40939228
.
cfilter
(
c
,
syncard
)
function
c40939228
.
cfilter
(
c
,
syncard
)
return
c
:
IsRace
(
RACE_DRAGON
)
and
c
:
IsSynchroType
(
TYPE_SYNCHRO
)
and
c
:
IsNotTuner
(
syncard
)
return
c
:
IsRace
(
RACE_DRAGON
)
and
c
:
IsSynchroType
(
TYPE_SYNCHRO
)
and
c
:
IsNotTuner
(
syncard
)
end
end
function
c40939228
.
syncheck
(
syncard
)
function
c40939228
.
syncheck
(
g
,
syncard
)
return
function
(
g
)
return
g
:
IsExists
(
c40939228
.
cfilter
,
1
,
nil
,
syncard
)
return
g
:
IsExists
(
c40939228
.
cfilter
,
1
,
nil
,
syncard
)
end
end
end
function
c40939228
.
distg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c40939228
.
distg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
aux
.
NegateEffectMonsterFilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
aux
.
NegateEffectMonsterFilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
...
...
c84343351.lua
View file @
fe1427c4
...
@@ -36,19 +36,14 @@ function s.initial_effect(c)
...
@@ -36,19 +36,14 @@ function s.initial_effect(c)
e3
:
SetOperation
(
s
.
spop
)
e3
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
s
.
mgcheck
(
c
,
mg
)
function
s
.
mfilter2
(
c
,
mg
,
syncard
)
local
rg
=
mg
-
c
return
c
:
IsCode
(
82044279
)
and
(
mg
:
IsExists
(
Card
.
IsType
,
1
,
c
,
TYPE_SYNCHRO
)
or
#
mg
-
1
>=
2
)
and
not
mg
:
IsExists
(
s
.
chkfilter
,
1
,
c
,
syncard
)
if
c
:
IsCode
(
82044279
)
then
return
(
rg
:
IsExists
(
Card
.
IsType
,
1
,
nil
,
TYPE_SYNCHRO
)
or
#
rg
>=
2
)
and
not
rg
:
IsExists
(
s
.
chkfilter
,
1
,
nil
)
else
return
false
end
end
end
function
s
.
chkfilter
(
c
)
function
s
.
chkfilter
(
c
,
syncard
)
return
not
c
:
IsTuner
(
c
)
return
not
c
:
IsTuner
(
syncard
)
end
end
function
s
.
syncheck
(
g
)
function
s
.
syncheck
(
g
,
syncard
)
return
g
:
IsExists
(
s
.
m
gcheck
,
1
,
nil
,
g
)
return
g
:
IsExists
(
s
.
m
filter2
,
1
,
nil
,
g
,
syncard
)
end
end
function
s
.
negcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
negcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
not
e
:
GetHandler
():
IsStatus
(
STATUS_BATTLE_DESTROYED
)
and
Duel
.
IsChainNegatable
(
ev
)
return
not
e
:
GetHandler
():
IsStatus
(
STATUS_BATTLE_DESTROYED
)
and
Duel
.
IsChainNegatable
(
ev
)
...
...
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