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
4
Merge Requests
4
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
0b9a6b8c
Commit
0b9a6b8c
authored
Feb 10, 2026
by
mercury233
Committed by
GitHub
Feb 10, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update Mathmech Superfactorial (#3131)
parent
4d7ef30b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
c87804365.lua
c87804365.lua
+13
-8
No files found.
c87804365.lua
View file @
0b9a6b8c
...
@@ -15,25 +15,28 @@ function c87804365.spfilter1(c,e,tp)
...
@@ -15,25 +15,28 @@ function c87804365.spfilter1(c,e,tp)
return
c
:
IsSetCard
(
0x132
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
c
:
IsCanBeEffectTarget
(
e
)
return
c
:
IsSetCard
(
0x132
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
c
:
IsCanBeEffectTarget
(
e
)
end
end
function
c87804365
.
fselect1
(
g
,
tp
)
function
c87804365
.
fselect1
(
g
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
c87804365
.
synfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
g
)
and
aux
.
dncheck
(
g
)
return
Duel
.
IsExistingMatchingCard
(
c87804365
.
synfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
g
)
end
end
function
c87804365
.
synfilter
(
c
,
g
)
function
c87804365
.
synfilter
(
c
,
g
)
return
c
:
IsSetCard
(
0x132
)
and
c
:
IsSynchroSummonable
(
nil
,
g
,
g
:
GetCount
()
-
1
,
g
:
GetCount
()
-
1
)
return
c
:
IsSetCard
(
0x132
)
and
c
:
IsSynchroSummonable
(
nil
,
g
,
#
g
-
1
,
#
g
-
1
)
end
end
function
c87804365
.
fselect2
(
g
,
tp
)
function
c87804365
.
fselect2
(
g
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
c87804365
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
g
)
and
aux
.
dncheck
(
g
)
return
Duel
.
IsExistingMatchingCard
(
c87804365
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
g
)
end
end
function
c87804365
.
xyzfilter
(
c
,
g
)
function
c87804365
.
xyzfilter
(
c
,
g
)
return
c
:
IsSetCard
(
0x132
)
and
c
:
IsXyzSummonable
(
g
,
g
:
GetCount
(),
g
:
GetCount
()
)
return
c
:
IsSetCard
(
0x132
)
and
c
:
IsXyzSummonable
(
g
,
#
g
,
#
g
)
end
end
function
c87804365
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
function
c87804365
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
false
end
if
chkc
then
return
false
end
local
ft
=
math.min
((
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)),
3
)
local
ft
=
math.min
((
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)),
3
)
if
chk
==
0
and
(
ft
<=
0
or
not
Duel
.
IsPlayerCanSpecialSummonCount
(
tp
,
2
)
or
Duel
.
IsPlayerAffectedByEffect
(
tp
,
59822133
))
then
return
false
end
local
g
=
Duel
.
GetMatchingGroup
(
c87804365
.
spfilter1
,
tp
,
LOCATION_GRAVE
,
0
,
nil
,
e
,
tp
)
local
g
=
Duel
.
GetMatchingGroup
(
c87804365
.
spfilter1
,
tp
,
LOCATION_GRAVE
,
0
,
nil
,
e
,
tp
)
aux
.
GCheckAdditional
=
aux
.
dncheck
local
b1
=
g
:
CheckSubGroup
(
c87804365
.
fselect1
,
1
,
ft
,
tp
)
local
b1
=
g
:
CheckSubGroup
(
c87804365
.
fselect1
,
1
,
ft
,
tp
)
local
b2
=
g
:
CheckSubGroup
(
c87804365
.
fselect2
,
1
,
ft
,
tp
)
local
b2
=
g
:
CheckSubGroup
(
c87804365
.
fselect2
,
1
,
ft
,
tp
)
if
chk
==
0
then
return
ft
>
0
and
Duel
.
IsPlayerCanSpecialSummonCount
(
tp
,
2
)
aux
.
GCheckAdditional
=
nil
and
not
Duel
.
IsPlayerAffectedByEffect
(
tp
,
59822133
)
and
(
b1
or
b2
)
end
if
chk
==
0
then
return
b1
or
b2
end
local
op
=
0
local
op
=
0
if
b1
and
b2
then
if
b1
and
b2
then
op
=
Duel
.
SelectOption
(
tp
,
aux
.
Stringid
(
87804365
,
0
),
aux
.
Stringid
(
87804365
,
1
))
op
=
Duel
.
SelectOption
(
tp
,
aux
.
Stringid
(
87804365
,
0
),
aux
.
Stringid
(
87804365
,
1
))
...
@@ -44,6 +47,7 @@ function c87804365.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
...
@@ -44,6 +47,7 @@ function c87804365.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
end
end
e
:
SetLabel
(
op
)
e
:
SetLabel
(
op
)
local
sg
=
nil
local
sg
=
nil
aux
.
GCheckAdditional
=
aux
.
dncheck
if
op
==
0
then
if
op
==
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
sg
=
g
:
SelectSubGroup
(
tp
,
c87804365
.
fselect1
,
false
,
1
,
ft
,
tp
)
sg
=
g
:
SelectSubGroup
(
tp
,
c87804365
.
fselect1
,
false
,
1
,
ft
,
tp
)
...
@@ -51,6 +55,7 @@ function c87804365.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
...
@@ -51,6 +55,7 @@ function c87804365.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
sg
=
g
:
SelectSubGroup
(
tp
,
c87804365
.
fselect2
,
false
,
1
,
ft
,
tp
)
sg
=
g
:
SelectSubGroup
(
tp
,
c87804365
.
fselect2
,
false
,
1
,
ft
,
tp
)
end
end
aux
.
GCheckAdditional
=
nil
Duel
.
SetTargetCard
(
sg
)
Duel
.
SetTargetCard
(
sg
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
sg
,
sg
:
GetCount
(),
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
sg
,
sg
:
GetCount
(),
0
,
0
)
end
end
...
@@ -102,14 +107,14 @@ function c87804365.activate(e,tp,eg,ep,ev,re,r,rp)
...
@@ -102,14 +107,14 @@ function c87804365.activate(e,tp,eg,ep,ev,re,r,rp)
end
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
rg
=
tg
:
Select
(
tp
,
1
,
1
,
nil
)
local
rg
=
tg
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
SynchroSummon
(
tp
,
rg
:
GetFirst
(),
nil
,
og
,
og
:
GetCount
()
-
1
,
og
:
GetCount
()
-
1
)
Duel
.
SynchroSummon
(
tp
,
rg
:
GetFirst
(),
nil
,
og
,
#
og
-
1
,
#
og
-
1
)
end
end
else
else
local
tg
=
Duel
.
GetMatchingGroup
(
c87804365
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
og
)
local
tg
=
Duel
.
GetMatchingGroup
(
c87804365
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
og
)
if
og
:
GetCount
()
==
g
:
GetCount
()
and
tg
:
GetCount
()
>
0
then
if
og
:
GetCount
()
==
g
:
GetCount
()
and
tg
:
GetCount
()
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
rg
=
tg
:
Select
(
tp
,
1
,
1
,
nil
)
local
rg
=
tg
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
XyzSummon
(
tp
,
rg
:
GetFirst
(),
og
,
og
:
GetCount
(),
og
:
GetCount
()
)
Duel
.
XyzSummon
(
tp
,
rg
:
GetFirst
(),
og
,
#
og
,
#
og
)
end
end
end
end
end
end
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