Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
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
MyCard
pre-release-database-cdb
Commits
fe7eb9ac
Commit
fe7eb9ac
authored
Nov 04, 2025
by
Amiya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复
parent
a490cb66
Pipeline
#41474
passed with stages
in 2 minutes and 26 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
script/c100253001.lua
script/c100253001.lua
+2
-1
script/c100253005.lua
script/c100253005.lua
+5
-1
No files found.
script/c100253001.lua
View file @
fe7eb9ac
...
@@ -51,8 +51,9 @@ end
...
@@ -51,8 +51,9 @@ end
function
s
.
indfilter
(
c
,
g
,
tp
,
ec
)
function
s
.
indfilter
(
c
,
g
,
tp
,
ec
)
return
c
:
IsControler
(
1
-
tp
)
and
g
:
IsContains
(
c
)
and
ec
:
IsControlerCanBeChanged
()
return
c
:
IsControler
(
1
-
tp
)
and
g
:
IsContains
(
c
)
and
ec
:
IsControlerCanBeChanged
()
end
end
function
s
.
cttg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
cttg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
if
chkc
then
return
chkc
:
IsControler
(
1
-
tp
)
and
eg
:
IsContains
(
chkc
)
and
c
:
IsControlerCanBeChanged
()
end
if
chk
==
0
then
return
true
end
if
chk
==
0
then
return
true
end
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
indfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
,
eg
,
tp
,
c
)
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
indfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
,
eg
,
tp
,
c
)
if
g
and
g
:
GetCount
()
>
0
then
if
g
and
g
:
GetCount
()
>
0
then
...
...
script/c100253005.lua
View file @
fe7eb9ac
...
@@ -43,7 +43,11 @@ function s.cfilter(c,g,e,tp)
...
@@ -43,7 +43,11 @@ function s.cfilter(c,g,e,tp)
and
Duel
.
GetLocationCount
(
1
-
c
:
GetControler
(),
LOCATION_MZONE
)
>
0
and
Duel
.
GetLocationCount
(
1
-
c
:
GetControler
(),
LOCATION_MZONE
)
>
0
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
id
+
o
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
0
,
3
,
RACE_AQUA
,
ATTRIBUTE_WATER
,
POS_FACEUP
,
1
-
c
:
GetControler
())
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
id
+
o
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
0
,
3
,
RACE_AQUA
,
ATTRIBUTE_WATER
,
POS_FACEUP
,
1
-
c
:
GetControler
())
end
end
function
s
.
tktg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
tktg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsSummonPlayer
(
1
-
tp
)
and
eg
:
IsContains
(
chkc
)
and
Duel
.
GetLocationCount
(
1
-
chkc
:
GetControler
(),
LOCATION_MZONE
)
>
0
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
id
+
o
,
0
,
TYPES_TOKEN_MONSTER
,
0
,
0
,
3
,
RACE_AQUA
,
ATTRIBUTE_WATER
,
POS_FACEUP
,
1
-
chkc
:
GetControler
())
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
cfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
nil
,
eg
,
e
,
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
cfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
nil
,
eg
,
e
,
tp
)
end
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
cfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
1
,
nil
,
eg
,
e
,
tp
)
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
cfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
1
,
nil
,
eg
,
e
,
tp
)
Duel
.
HintSelection
(
g
)
Duel
.
HintSelection
(
g
)
...
...
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