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
0523dc0a
Commit
0523dc0a
authored
Jan 10, 2026
by
wind2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch '233/patch-sync-workaround' into master
parents
aef63c29
da8dba6a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
14 deletions
+18
-14
c2501624.lua
c2501624.lua
+1
-1
c42158279.lua
c42158279.lua
+3
-3
c45675980.lua
c45675980.lua
+3
-9
c50604072.lua
c50604072.lua
+1
-1
c66122213.lua
c66122213.lua
+4
-0
procedure.lua
procedure.lua
+6
-0
No files found.
c2501624.lua
View file @
0523dc0a
...
...
@@ -59,7 +59,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp,c)
e1
:
SetCode
(
EFFECT_CHANGE_CODE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetValue
(
38033121
)
e1
:
SetReset
(
RESET_EVENT
+
0xf
f
0000
)
e1
:
SetReset
(
RESET_EVENT
+
0xf
e
0000
)
c
:
RegisterEffect
(
e1
)
end
function
s
.
thfilter
(
c
)
...
...
c42158279.lua
View file @
0523dc0a
...
...
@@ -62,8 +62,8 @@ function c42158279.activate(e,tp,eg,ep,ev,re,r,rp)
tc
:
CompleteProcedure
()
end
end
function
c42158279
.
thfilter
(
c
)
return
c
:
IsSetCard
(
0x145
)
and
c
:
IsType
(
TYPE_MONSTER
)
function
c42158279
.
thfilter
(
c
,
e
)
return
c
:
IsSetCard
(
0x145
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsCanBeEffectTarget
(
e
)
end
function
c42158279
.
fselect
(
g
)
return
aux
.
dlvcheck
(
g
)
and
g
:
IsExists
(
c42158279
.
fcheck
,
1
,
nil
,
g
)
...
...
@@ -75,8 +75,8 @@ function c42158279.fcheck2(c)
return
c
:
IsAbleToDeck
()
end
function
c42158279
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
g
=
Duel
.
GetMatchingGroup
(
c42158279
.
thfilter
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
if
chkc
then
return
false
end
local
g
=
Duel
.
GetMatchingGroup
(
c42158279
.
thfilter
,
tp
,
LOCATION_GRAVE
,
0
,
nil
,
e
)
if
chk
==
0
then
return
g
:
CheckSubGroup
(
c42158279
.
fselect
,
2
,
2
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c42158279
.
fselect
,
false
,
2
,
2
)
...
...
c45675980.lua
View file @
0523dc0a
...
...
@@ -29,17 +29,11 @@ function c45675980.initial_effect(c)
c
:
RegisterEffect
(
e2
)
end
function
c45675980
.
syncheck
(
g
,
tp
,
syncard
)
return
aux
.
SynMixHandCheck
(
g
,
tp
,
syncard
)
and
syncard
:
IsSynchroSummonable
(
nil
,
g
,
#
g
-
1
,
#
g
-
1
)
end
function
c45675980
.
syncheckaddition
(
syncard
)
return
function
(
g
)
if
not
g
:
IsExists
(
Card
.
IsRace
,
1
,
nil
,
RACE_DRAGON
)
then
return
false
end
local
sumlv
=
g
:
GetSum
(
Auxiliary
.
GetMinSynchroLevel
,
syncard
)
return
sumlv
<=
syncard
:
GetLevel
()
end
return
g
:
IsExists
(
Card
.
IsRace
,
1
,
nil
,
RACE_DRAGON
)
and
aux
.
SynMixHandCheck
(
g
,
tp
,
syncard
)
and
syncard
:
IsSynchroSummonable
(
nil
,
g
,
#
g
-
1
,
#
g
-
1
)
end
function
c45675980
.
spfilter
(
c
,
tp
,
mg
)
aux
.
GCheckAdditional
=
c45675980
.
synchecka
ddition
(
c
)
aux
.
GCheckAdditional
=
aux
.
SynGroupCheckLevelA
ddition
(
c
)
local
res
=
mg
:
CheckSubGroup
(
c45675980
.
syncheck
,
2
,
#
mg
,
tp
,
c
)
aux
.
GCheckAdditional
=
nil
return
res
...
...
c50604072.lua
View file @
0523dc0a
...
...
@@ -66,7 +66,7 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
aclimit
(
e
,
re
)
local
rc
=
re
:
GetHandler
()
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
rc
:
IsLevelAbove
(
5
)
and
rc
:
IsSummonLocation
(
LOCATION_EXTRA
)
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
rc
:
IsLevelAbove
(
5
)
and
rc
:
Is
Location
(
LOCATION_MZONE
)
and
rc
:
Is
SummonLocation
(
LOCATION_EXTRA
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
s
.
spfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
e
,
tp
)
end
...
...
c66122213.lua
View file @
0523dc0a
...
...
@@ -25,6 +25,7 @@ function s.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_DELAY
+
EFFECT_FLAG_CARD_TARGET
)
e2
:
SetCode
(
EVENT_DESTROYED
)
e2
:
SetCountLimit
(
1
,
id
+
o
)
e2
:
SetCondition
(
s
.
spcon
)
e2
:
SetTarget
(
s
.
sptg
)
e2
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e2
)
...
...
@@ -56,6 +57,9 @@ function s.deop(e,tp,eg,ep,ev,re,r,rp)
end
end
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
bit
.
band
(
r
,
REASON_EFFECT
+
REASON_BATTLE
)
~=
0
end
function
s
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsLevelBelow
(
5
)
and
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP_DEFENSE
)
...
...
procedure.lua
View file @
0523dc0a
...
...
@@ -441,6 +441,12 @@ function Auxiliary.TuneMagicianCheckAdditionalX(ecode)
return
not
g
:
IsExists
(
Auxiliary
.
TuneMagicianCheckX
,
1
,
nil
,
g
,
ecode
)
end
end
function
Auxiliary
.
SynGroupCheckLevelAddition
(
syncard
)
return
function
(
g
)
local
sumlv
=
g
:
GetSum
(
Auxiliary
.
GetMinSynchroLevel
,
syncard
)
return
sumlv
<=
syncard
:
GetLevel
()
end
end
--Xyz Summon
function
Auxiliary
.
XyzAlterFilter
(
c
,
alterf
,
xyzc
,
e
,
tp
,
alterop
)
...
...
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