Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
no81cards
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
Nemo Ma
no81cards
Commits
d6088656
Commit
d6088656
authored
Sep 02, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
e9a0b923
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
20 additions
and
10 deletions
+20
-10
expansions/script/c11185140.lua
expansions/script/c11185140.lua
+1
-0
expansions/script/c11185145.lua
expansions/script/c11185145.lua
+2
-0
expansions/script/c11185155.lua
expansions/script/c11185155.lua
+2
-2
expansions/script/c13250018.lua
expansions/script/c13250018.lua
+1
-1
expansions/script/c40010830.lua
expansions/script/c40010830.lua
+9
-2
expansions/script/c71403001.lua
expansions/script/c71403001.lua
+2
-2
expansions/script/c71403018.lua
expansions/script/c71403018.lua
+2
-2
expansions/script/c89490048.lua
expansions/script/c89490048.lua
+1
-1
No files found.
expansions/script/c11185140.lua
View file @
d6088656
...
...
@@ -130,6 +130,7 @@ function s.sumop(e,tp,eg,ep,ev,re,r,rp)
local
tg
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NegateAnyFilter
,
tp
,
0
,
LOCATION_ONFIELD
,
2
,
2
,
nil
)
if
tg
:
GetCount
()
<
1
then
return
end
Duel
.
BreakEffect
()
Duel
.
HintSelection
(
tg
)
for
tc
in
aux
.
Next
(
tg
)
do
if
tc
:
IsCanBeDisabledByEffect
(
e
,
false
)
then
Duel
.
NegateRelatedChain
(
tc
,
RESET_TURN_SET
)
...
...
expansions/script/c11185145.lua
View file @
d6088656
...
...
@@ -85,6 +85,7 @@ function s.ctop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
BreakEffect
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
sg
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
HintSelection
(
sg
)
Duel
.
Destroy
(
sg
,
REASON_EFFECT
)
end
end
...
...
@@ -132,6 +133,7 @@ function s.sumop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
BreakEffect
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
sg
=
g
:
Select
(
tp
,
2
,
2
,
nil
)
Duel
.
HintSelection
(
sg
)
Duel
.
Destroy
(
sg
,
REASON_EFFECT
)
end
end
...
...
expansions/script/c11185155.lua
View file @
d6088656
...
...
@@ -42,13 +42,13 @@ function s.atkval(e,c)
end
function
s
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
nil
,
tp
,
LOCATION_HAND
+
LOCATION_ONFIELD
,
0
,
1
,
e
:
GetHandler
()
,
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
nil
,
tp
,
LOCATION_HAND
+
LOCATION_ONFIELD
,
0
,
1
,
nil
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
nil
,
1
,
tp
,
LOCATION_HAND
+
LOCATION_ONFIELD
)
end
function
s
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
nil
,
tp
,
LOCATION_HAND
+
LOCATION_ONFIELD
,
0
,
1
,
3
,
e
:
GetHandler
()
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
nil
,
tp
,
LOCATION_HAND
+
LOCATION_ONFIELD
,
0
,
1
,
3
,
nil
)
Duel
.
HintSelection
(
g
)
local
oc
=
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
if
oc
==
0
then
return
end
...
...
expansions/script/c13250018.lua
View file @
d6088656
...
...
@@ -51,7 +51,7 @@ function s.filter(c)
return
c
:
IsAttackPos
()
and
c
:
IsCanChangePosition
()
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
filter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
filter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
nil
)
end
local
g
=
Duel
.
GetMatchingGroup
(
s
.
filter
,
tp
,
0
,
LOCATION_MZONE
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_POSITION
,
g
,
1
,
0
,
0
)
end
...
...
expansions/script/c40010830.lua
View file @
d6088656
...
...
@@ -40,6 +40,13 @@ end
function
cm
.
spfilter
(
c
,
e
,
tp
)
return
cm
.
BlueDeathster
(
c
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
cm
.
spfilter
(
c
,
e
,
tp
)
return
cm
.
BlueDeathster
(
c
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
cm
.
thfilter
(
c
)
return
c
:
IsAbleToHand
()
and
not
c
:
IsLocation
(
LOCATION_FZONE
)
end
function
cm
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
cm
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
...
...
@@ -50,10 +57,10 @@ function cm.spop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g1
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g1
:
GetCount
()
>
0
then
if
Duel
.
SpecialSummon
(
g1
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsAbleToHand
,
tp
,
LOCATION_SZONE
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
1
))
then
if
Duel
.
SpecialSummon
(
g1
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
and
Duel
.
IsExistingMatchingCard
(
cm
.
thfilter
,
tp
,
LOCATION_SZONE
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
1
))
then
Duel
.
BreakEffect
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
g2
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsAbleToHand
,
tp
,
LOCATION_SZONE
,
0
,
1
,
1
,
nil
)
local
g2
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
thfilter
,
tp
,
LOCATION_SZONE
,
0
,
1
,
1
,
nil
)
Duel
.
SendtoHand
(
g2
,
nil
,
REASON_EFFECT
)
end
end
...
...
expansions/script/c71403001.lua
View file @
d6088656
...
...
@@ -42,11 +42,11 @@ function c71403001.tg1(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOEXTRA
,
g
,
1
,
tp
,
LOCATION_DECK
)
end
function
c71403001
.
op1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
zone
=
0x1f
00
local
zone
=
0x1f
local
pflag1
=
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
0
)
local
pflag2
=
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
1
)
if
pflag1
~=
pflag2
then
zone
=
0xe
00
zone
=
0xe
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
,
tp
,
LOCATION_REASON_TOFIELD
,
zone
)
==
0
then
return
...
...
expansions/script/c71403018.lua
View file @
d6088656
...
...
@@ -72,11 +72,11 @@ function s.tg1(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
nil
,
1
,
tp
,
LOCATION_ONFIELD
)
end
function
s
.
op1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
zone
=
0x1f
00
local
zone
=
0x1f
local
pflag1
=
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
0
)
local
pflag2
=
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
1
)
if
pflag1
~=
pflag2
then
zone
=
0xe
00
zone
=
0xe
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
,
tp
,
LOCATION_REASON_TOFIELD
,
zone
)
==
0
then
return
...
...
expansions/script/c89490048.lua
View file @
d6088656
...
...
@@ -50,7 +50,7 @@ function s.atkfilter(c)
return
c
:
IsType
(
TYPE_TUNER
)
and
c
:
IsFaceupEx
()
end
function
s
.
atkval
(
e
,
c
)
return
Duel
.
GetMatchingGroup
Count
(
s
.
atkfilter
,
c
:
GetControler
(),
LOCATION_GRAVE
+
LOCATION_REMOVED
,
LOCATION_GRAVE
+
LOCATION_REMOVED
,
nil
)
*
500
return
Duel
.
GetMatchingGroup
(
s
.
atkfilter
,
c
:
GetControler
(),
LOCATION_GRAVE
+
LOCATION_REMOVED
,
LOCATION_GRAVE
+
LOCATION_REMOVED
,
nil
):
GetClassCount
(
Card
.
GetCode
)
*
500
end
function
s
.
matcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_SYNCHRO
)
and
e
:
GetLabel
()
==
1
...
...
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