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
5a940b1f
Commit
5a940b1f
authored
Feb 22, 2026
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
7f147cda
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
18 additions
and
15 deletions
+18
-15
expansions/script/c11451993.lua
expansions/script/c11451993.lua
+1
-0
expansions/script/c11579815.lua
expansions/script/c11579815.lua
+3
-1
expansions/script/c12869045.lua
expansions/script/c12869045.lua
+1
-1
expansions/script/c12869050.lua
expansions/script/c12869050.lua
+1
-1
expansions/script/c12869055.lua
expansions/script/c12869055.lua
+1
-1
expansions/script/c12869060.lua
expansions/script/c12869060.lua
+1
-1
expansions/script/c12869095.lua
expansions/script/c12869095.lua
+1
-1
expansions/script/c28384553.lua
expansions/script/c28384553.lua
+1
-1
expansions/script/c33201454.lua
expansions/script/c33201454.lua
+1
-1
expansions/script/c7435525.lua
expansions/script/c7435525.lua
+2
-2
expansions/script/c7435527.lua
expansions/script/c7435527.lua
+2
-2
expansions/script/c75040028.lua
expansions/script/c75040028.lua
+3
-3
No files found.
expansions/script/c11451993.lua
View file @
5a940b1f
...
@@ -92,6 +92,7 @@ function cm.sop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -92,6 +92,7 @@ function cm.sop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
SpecialSummonStep
=
function
(
c
,
st
,
sp
,
top
,
...
)
Duel
.
SpecialSummonStep
=
function
(
c
,
st
,
sp
,
top
,
...
)
if
aux
.
GetValueType
(
c
)
~=
"Card"
then
return
_SpecialSummonStep
(
c
,
st
,
sp
,
top
,
...
)
end
if
aux
.
GetValueType
(
c
)
~=
"Card"
then
return
_SpecialSummonStep
(
c
,
st
,
sp
,
top
,
...
)
end
local
dg
=
Group
.
FromCards
(
c
):
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_DECK
):
Filter
(
Card
.
IsAbleToRemove
,
nil
)
local
dg
=
Group
.
FromCards
(
c
):
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_DECK
):
Filter
(
Card
.
IsAbleToRemove
,
nil
)
local
g
=
Group
.
FromCards
(
c
)
if
t
==
Duel
.
GetTurnCount
()
and
#
dg
>
0
then
if
t
==
Duel
.
GetTurnCount
()
and
#
dg
>
0
then
Duel
.
Remove
(
dg
,
POS_FACEUP
,
REASON_EFFECT
,
sp
)
Duel
.
Remove
(
dg
,
POS_FACEUP
,
REASON_EFFECT
,
sp
)
g
=
(
g
-
dg
)
+
dg
:
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_REMOVED
)
g
=
(
g
-
dg
)
+
dg
:
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_REMOVED
)
...
...
expansions/script/c11579815.lua
View file @
5a940b1f
...
@@ -167,7 +167,9 @@ function s.resetop2(e,tp,eg,ep,ev,re,r,rp)
...
@@ -167,7 +167,9 @@ function s.resetop2(e,tp,eg,ep,ev,re,r,rp)
e
:
Reset
()
e
:
Reset
()
end
end
function
s
.
tdop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
tdop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
sg
=
e
:
GetLabelObject
()
local
tg
=
e
:
GetLabelObject
()
local
sg
=
tg
:
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_SZONE
)
if
sg
:
GetCount
()
>
0
then
return
false
end
for
tc
in
aux
.
Next
(
sg
)
do
for
tc
in
aux
.
Next
(
sg
)
do
tc
:
SetStatus
(
STATUS_LEAVE_CONFIRMED
,
true
)
tc
:
SetStatus
(
STATUS_LEAVE_CONFIRMED
,
true
)
end
end
...
...
expansions/script/c12869045.lua
View file @
5a940b1f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
local
s
,
id
,
o
=
GetID
()
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--synchro summon
--synchro summon
aux
.
AddSynchro
Procedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
)
,
aux
.
NonTuner
(
nil
),
1
,
1
)
aux
.
AddSynchro
MixProcedure
(
c
,
aux
.
Tuner
(
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
)),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
1
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--token
--token
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c12869050.lua
View file @
5a940b1f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
local
s
,
id
,
o
=
GetID
()
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--synchro summon
--synchro summon
aux
.
AddSynchro
Procedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
),
aux
.
NonTuner
(
nil
),
1
)
aux
.
AddSynchro
MixProcedure
(
c
,
aux
.
Tuner
(
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
)),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
99
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--token
--token
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c12869055.lua
View file @
5a940b1f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
local
s
,
id
,
o
=
GetID
()
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--synchro summon
--synchro summon
aux
.
AddSynchro
Procedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
),
aux
.
NonTuner
(
nil
),
1
)
aux
.
AddSynchro
MixProcedure
(
c
,
aux
.
Tuner
(
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
)),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
99
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--token
--token
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c12869060.lua
View file @
5a940b1f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
local
s
,
id
,
o
=
GetID
()
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--synchro summon
--synchro summon
aux
.
AddSynchro
Procedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
),
aux
.
NonTuner
(
nil
),
1
)
aux
.
AddSynchro
MixProcedure
(
c
,
aux
.
Tuner
(
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
)),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
99
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--token
--token
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c12869095.lua
View file @
5a940b1f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
local
s
,
id
,
o
=
GetID
()
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--synchro summon
--synchro summon
aux
.
AddSynchro
Procedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
),
aux
.
NonTuner
(
nil
),
1
)
aux
.
AddSynchro
MixProcedure
(
c
,
aux
.
Tuner
(
aux
.
FilterBoolFunction
(
Card
.
IsSetCard
,
0x6a70
)),
nil
,
nil
,
aux
.
NonTuner
(
nil
),
1
,
99
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--cannot special summon
--cannot special summon
local
e0
=
Effect
.
CreateEffect
(
c
)
local
e0
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c28384553.lua
View file @
5a940b1f
...
@@ -78,7 +78,7 @@ end
...
@@ -78,7 +78,7 @@ end
function
c28384553
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c28384553
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
ct
,
phchk
=
e
:
GetHandler
():
GetFlagEffectLabel
(
28384553
),
Duel
.
GetCurrentPhase
()
==
PHASE_END
and
1
or
0
local
ct
,
phchk
=
e
:
GetHandler
():
GetFlagEffectLabel
(
28384553
),
Duel
.
GetCurrentPhase
()
==
PHASE_END
and
1
or
0
local
g
=
Duel
.
GetMatchingGroup
(
aux
.
NegateAnyFilter
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
nil
)
local
g
=
Duel
.
GetMatchingGroup
(
aux
.
NegateAnyFilter
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
nil
)
if
chk
==
0
then
return
ct
>
0
and
#
g
>
0
end
if
chk
==
0
then
return
ct
and
ct
>
0
and
#
g
>
0
end
e
:
SetLabel
(
ct
,
phchk
)
e
:
SetLabel
(
ct
,
phchk
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
1
,
0
,
0
)
end
end
...
...
expansions/script/c33201454.lua
View file @
5a940b1f
...
@@ -56,7 +56,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
...
@@ -56,7 +56,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
filter
,
tp
,
LOCATION_GRAVE
,
LOCATION_GRAVE
,
1
,
2
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
filter
,
tp
,
LOCATION_GRAVE
,
LOCATION_GRAVE
,
1
,
2
,
nil
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SendtoHand
(
g
,
nil
,
REASON_EFFECT
)
Duel
.
SendtoHand
(
g
,
tp
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
end
end
end
end
...
...
expansions/script/c7435525.lua
View file @
5a940b1f
...
@@ -32,7 +32,7 @@ function s.matfilter(c)
...
@@ -32,7 +32,7 @@ function s.matfilter(c)
end
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
if
chk
==
0
then
if
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435551
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
2000
,
0
,
5
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
)
then
return
false
end
if
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435551
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
2000
,
0
,
5
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
,
POS_FACEUP
,
tp
,
SUMMON_TYPE_RITUAL
)
then
return
false
end
local
mg
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
mg
:
Filter
(
s
.
matfilter
,
nil
)
local
mg
=
mg
:
Filter
(
s
.
matfilter
,
nil
)
local
res
=
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
local
res
=
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
...
@@ -56,7 +56,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
...
@@ -56,7 +56,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
local
token
=
Duel
.
CreateToken
(
tp
,
7435551
)
local
token
=
Duel
.
CreateToken
(
tp
,
7435551
)
local
m
=
Duel
.
GetRitualMaterial
(
tp
)
local
m
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
m
:
Filter
(
s
.
matfilter
,
nil
)
local
mg
=
m
:
Filter
(
s
.
matfilter
,
nil
)
if
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435551
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
2000
,
0
,
5
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
)
and
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
then
if
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435551
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
2000
,
0
,
5
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
,
POS_FACEUP
,
tp
,
SUMMON_TYPE_RITUAL
)
and
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
then
--Debug.Message("3")
--Debug.Message("3")
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
mat
=
mg
:
SelectSubGroup
(
tp
,
s
.
RitualCheck
,
true
,
1
,
5
,
tp
)
local
mat
=
mg
:
SelectSubGroup
(
tp
,
s
.
RitualCheck
,
true
,
1
,
5
,
tp
)
...
...
expansions/script/c7435527.lua
View file @
5a940b1f
...
@@ -32,7 +32,7 @@ function s.matfilter(c)
...
@@ -32,7 +32,7 @@ function s.matfilter(c)
end
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
if
chk
==
0
then
if
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435553
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
1200
,
0
,
3
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
)
then
return
false
end
if
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435553
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
1200
,
0
,
3
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
,
POS_FACEUP
,
tp
,
SUMMON_TYPE_RITUAL
)
then
return
false
end
local
mg
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
mg
:
Filter
(
s
.
matfilter
,
nil
)
local
mg
=
mg
:
Filter
(
s
.
matfilter
,
nil
)
local
res
=
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
local
res
=
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
...
@@ -56,7 +56,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
...
@@ -56,7 +56,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
local
token
=
Duel
.
CreateToken
(
tp
,
7435553
)
local
token
=
Duel
.
CreateToken
(
tp
,
7435553
)
local
m
=
Duel
.
GetRitualMaterial
(
tp
)
local
m
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
m
:
Filter
(
s
.
matfilter
,
nil
)
local
mg
=
m
:
Filter
(
s
.
matfilter
,
nil
)
if
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435553
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
1200
,
0
,
3
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
)
and
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
then
if
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
7435553
,
0
,
TYPE_TOKEN
+
TYPE_MONSTER
+
TYPE_RITUAL
+
TYPE_EFFECT
,
1200
,
0
,
3
,
RACE_ZOMBIE
,
ATTRIBUTE_WIND
,
POS_FACEUP
,
tp
,
SUMMON_TYPE_RITUAL
)
and
mg
:
CheckSubGroup
(
s
.
RitualCheck
,
1
,
nil
,
tp
)
then
--Debug.Message("3")
--Debug.Message("3")
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
mat
=
mg
:
SelectSubGroup
(
tp
,
s
.
RitualCheck
,
true
,
1
,
5
,
tp
)
local
mat
=
mg
:
SelectSubGroup
(
tp
,
s
.
RitualCheck
,
true
,
1
,
5
,
tp
)
...
...
expansions/script/c75040028.lua
View file @
5a940b1f
...
@@ -22,7 +22,7 @@ function s.initial_effect(c)
...
@@ -22,7 +22,7 @@ function s.initial_effect(c)
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetCategory
(
CATEGORY_TOGRAVE
)
e3
:
SetCategory
(
CATEGORY_TOGRAVE
)
e3
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e3
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e3
:
SetCode
(
EVENT_
FREE_CHAIN
)
e3
:
SetCode
(
EVENT_
CHAINING
)
e3
:
SetRange
(
LOCATION_SZONE
)
e3
:
SetRange
(
LOCATION_SZONE
)
e3
:
SetCountLimit
(
1
,
id
)
e3
:
SetCountLimit
(
1
,
id
)
e3
:
SetCondition
(
s
.
tgcon
)
e3
:
SetCondition
(
s
.
tgcon
)
...
@@ -72,8 +72,8 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
...
@@ -72,8 +72,8 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Equip
(
tp
,
c
,
tc
)
Duel
.
Equip
(
tp
,
c
,
tc
)
end
end
end
end
function
s
.
tgcon
(
e
)
function
s
.
tgcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
GetEquipTarget
()
return
e
:
GetHandler
():
GetEquipTarget
()
and
re
:
IsHasType
(
EFFECT_TYPE_ACTIVATE
)
and
ep
~=
tp
end
end
function
s
.
tgfilter
(
c
)
function
s
.
tgfilter
(
c
)
return
aux
.
IsCodeListed
(
c
,
75040001
)
and
c
:
IsAbleToGrave
()
and
c
:
IsType
(
TYPE_TRAP
)
return
aux
.
IsCodeListed
(
c
,
75040001
)
and
c
:
IsAbleToGrave
()
and
c
:
IsType
(
TYPE_TRAP
)
...
...
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