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
e3397bc9
Commit
e3397bc9
authored
Aug 19, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
7156599e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
10 deletions
+11
-10
expansions/script/c20010000.lua
expansions/script/c20010000.lua
+1
-1
expansions/script/c20010003.lua
expansions/script/c20010003.lua
+5
-6
expansions/script/c25000011.lua
expansions/script/c25000011.lua
+1
-1
expansions/script/c33200908.lua
expansions/script/c33200908.lua
+3
-1
expansions/script/c7488296.lua
expansions/script/c7488296.lua
+1
-1
No files found.
expansions/script/c20010000.lua
View file @
e3397bc9
...
...
@@ -166,7 +166,7 @@ local function GetUseableMzoneXY()
for
p
=
0
,
1
do
local
isp
=
p
==
ORDER
local
_
,
zone
=
Duel
.
GetLocationCount
(
p
,
LOCATION_MZONE
,
PLAYER_NONE
,
0
)
y
=
(
p
+
1
)
*
2
local
y
=
isp
and
2
or
4
for
i
=
0
,
4
do
if
(
zone
&
(
1
<<
i
))
==
0
then
...
...
expansions/script/c20010003.lua
View file @
e3397bc9
...
...
@@ -42,7 +42,7 @@ local function GetUseableMzoneXY()
for
p
=
0
,
1
do
local
isp
=
p
==
ORDER
local
_
,
zone
=
Duel
.
GetLocationCount
(
p
,
LOCATION_MZONE
,
PLAYER_NONE
,
0
)
y
=
(
p
+
1
)
*
2
local
y
=
isp
and
2
or
4
for
i
=
0
,
4
do
if
(
zone
&
(
1
<<
i
))
==
0
then
...
...
@@ -77,12 +77,11 @@ local function CreatPart(code, x, y)
[
false
]
=
{
[
2
]
=
6
,
[
4
]
=
5
},
}
if
ct
>
0
then
_x
,
_y
=
table.unpack
(
xys
[
math.random
(
1
,
ct
)
])
_x
,
_y
=
table.unpack
(
xys
[
1
])
else
local
g
=
Duel
.
GetFieldGroup
(
0
,
LOCATION_MZONE
,
LOCATION_MZONE
)
g
=
g
:
Filter
(
Card
.
IsCode
,
nil
,
m
+
1
,
m
+
4
,
m
+
5
,
m
+
6
,
m
+
7
,
m
+
8
)
local
_part
=
g
:
RandomSelect
(
0
,
1
):
GetFirst
()
_x
,
_y
=
GetXY
(
c
)
local
f
=
function
(
c
)
return
c
:
GetSequence
()
==
x
-
1
end
local
_part
=
Duel
.
GetMatchingGroup
(
f
,
ORDER
,
LOCATION_MZONE
,
0
,
nil
):
GetFirst
()
_x
,
_y
=
x
,
2
_code
=
_part
:
GetCode
()
_ismine
=
_part
:
GetFlagEffect
(
MINE
)
>
0
Duel
.
Destroy
(
_part
,
REASON_RULE
)
...
...
expansions/script/c25000011.lua
View file @
e3397bc9
...
...
@@ -87,7 +87,7 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
id
,
2
))
local
lv
=
Duel
.
AnnounceNumber
(
tp
,
table.unpack
(
lvt
))
local
g
=
Duel
.
GetDecktopGroup
(
tp
,
lv
)
if
Duel
.
Destroy
(
g
,
nil
,
REASON_EFFECT
)
<
3
then
return
end
if
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
<
3
then
return
end
if
Duel
.
IsExistingMatchingCard
(
aux
.
NegateAnyFilter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
3
))
then
Duel
.
BreakEffect
()
...
...
expansions/script/c33200908.lua
View file @
e3397bc9
...
...
@@ -31,6 +31,7 @@ function c33200908.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e2
:
SetRange
(
LOCATION_MZONE
+
LOCATION_HAND
)
e2
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_CHAIN
)
e2
:
SetHintTiming
(
0
,
TIMING_END_PHASE
)
e2
:
SetTarget
(
c33200908
.
cttg
)
e2
:
SetOperation
(
c33200908
.
ctop
)
...
...
@@ -62,10 +63,11 @@ function c33200908.ctfilter(c)
end
function
c33200908
.
cttg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsControler
(
1
-
tp
)
and
c33200908
.
ctfilter
(
chkc
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
c33200908
.
ctfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
c33200908
.
ctfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
and
e
:
GetHandler
():
GetFlagEffect
(
33200908
)
==
0
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
local
g
=
Duel
.
SelectTarget
(
tp
,
c33200908
.
ctfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
e
:
GetHandler
():
RegisterFlagEffect
(
33200908
,
RESET_CHAIN
,
0
,
1
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
nil
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_COUNTER
,
tc
,
nil
,
0
,
0x132a
)
if
e
:
GetHandler
():
IsLocation
(
LOCATION_HAND
)
then
...
...
expansions/script/c7488296.lua
View file @
e3397bc9
...
...
@@ -58,7 +58,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
g2
=
Duel
.
GetMatchingGroup
(
nil
,
tp
,
LOCATION_ONFIELD
,
0
,
g1
)
local
c2
=
g2
:
SelectUnselect
(
g1
,
tp
,
false
,
true
,
1
,
1
)
if
not
c2
then
goto
SelectStart
end
if
not
c2
or
g1
:
IsContains
(
c2
)
then
goto
SelectStart
end
--g1:Merge(g2)
g1
:
AddCard
(
c2
)
Duel
.
HintSelection
(
g1
)
...
...
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