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
e6cc54ee
Commit
e6cc54ee
authored
Jun 24, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
743ba59f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
3 deletions
+17
-3
expansions/script/c23410014.lua
expansions/script/c23410014.lua
+1
-1
expansions/script/c23410016.lua
expansions/script/c23410016.lua
+4
-1
expansions/script/c53755006.lua
expansions/script/c53755006.lua
+12
-1
No files found.
expansions/script/c23410014.lua
View file @
e6cc54ee
...
...
@@ -46,7 +46,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsFacedown
,
tp
,
0
,
LOCATION_REMOVED
,
nil
):
RandomSelect
(
tp
,
g
:
GetFirst
():
GetLevel
())
Duel
.
SendtoDeck
(
g
,
nil
,
2
,
REASON_EFFECT
)
end
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
g
,
SUMMON_TYPE_RITUAL
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
g
:
GetFirst
():
CompleteProcedure
()
end
end
...
...
expansions/script/c23410016.lua
View file @
e6cc54ee
...
...
@@ -41,12 +41,15 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
end
if
Duel
.
GetDecktopGroup
(
1
-
tp
,
num
):
FilterCount
(
Card
.
IsAbleToRemove
,
nil
)
~=
num
then
return
end
local
g
=
Duel
.
GetDecktopGroup
(
1
-
tp
,
num
)
if
Duel
.
Remove
(
g
,
POS_FACEDOWN
,
REASON_EFFECT
)
~=
0
and
Duel
.
IsExistingMatchingCard
(
n
il
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
1
))
then
if
Duel
.
Remove
(
g
,
POS_FACEDOWN
,
REASON_EFFECT
)
~=
0
and
Duel
.
IsExistingMatchingCard
(
cm
.
cf
il
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
1
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
rg
=
Duel
.
GetMatchingGroup
(
nil
,
tp
,
0
,
LOCATION_ONFIELD
,
nil
):
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
Remove
(
rg
,
POS_FACEDOWN
,
REASON_EFFECT
)
end
end
function
cm
.
cfil
(
c
)
return
c
:
IsCode
(
23410013
)
and
c
:
IsFaceup
()
end
function
cm
.
cfilter
(
c
,
tp
)
return
c
:
IsFacedown
()
and
c
:
GetControler
()
==
1
-
tp
end
...
...
expansions/script/c53755006.lua
View file @
e6cc54ee
...
...
@@ -38,10 +38,15 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e5
)
if
not
cm
.
global_check
then
cm
.
global_check
=
true
local
ge
=
Effect
.
GlobalEffect
()
ge
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
ge
:
SetCode
(
EVENT_ADJUST
)
ge
:
SetOperation
(
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
cm
.
check
=
false
end
)
Duel
.
RegisterEffect
(
ge
,
0
)
cm
[
0
]
=
Duel
.
ConfirmDecktop
Duel
.
ConfirmDecktop
=
function
(
tp
,
ct
)
local
g
=
Duel
.
GetDecktopGroup
(
tp
,
ct
)
if
ct
<
5
then
if
ct
<
5
and
not
cm
.
check
then
if
g
:
IsExists
(
Card
.
IsHasEffect
,
1
,
nil
,
m
)
then
Duel
.
RegisterFlagEffect
(
tp
,
m
,
RESET_PHASE
+
PHASE_END
,
0
,
1
)
end
end
local
ch
=
Duel
.
GetCurrentChain
()
...
...
@@ -62,8 +67,14 @@ function cm.initial_effect(c)
e2
:
SetOperation
(
cm
.
reset
)
e2
:
SetReset
(
RESET_CHAIN
)
Duel
.
RegisterEffect
(
e2
,
tp
)
cm
.
check
=
false
return
cm
[
0
](
tp
,
ct
)
end
local
f2
=
Duel
.
MoveSequence
Duel
.
MoveSequence
=
function
(
...
)
cm
.
check
=
true
return
f2
(
...
)
end
end
end
function
cm
.
reset
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
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