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
de3a9a2a
Commit
de3a9a2a
authored
Sep 03, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix シンクロ・ワンウェイ
parent
f7723258
Pipeline
#40420
passed with stages
in 3 minutes and 53 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
7 deletions
+9
-7
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
SD48.cdb
SD48.cdb
+0
-0
pack/2025-09-06 SD48.ydk
pack/2025-09-06 SD48.ydk
+1
-0
pics/100244006.jpg
pics/100244006.jpg
+0
-0
script/c100244006.lua
script/c100244006.lua
+7
-6
No files found.
.gitlab-ci.yml
View file @
de3a9a2a
...
...
@@ -91,7 +91,7 @@ add_script_diff:
FIELDS
:
'
name,desc,overallString,picUrl'
GIT_DEPTH
:
'
1000'
OUTPUT_FILENAME
:
test-release.json
REF_COMMIT
:
'
17.
2
'
# 更新的时候改这里,修改成上一个tag的版本号
REF_COMMIT
:
'
17.
3
'
# 更新的时候改这里,修改成上一个tag的版本号
script
:
-
apt update;apt -y install wget
-
currentPath=$PWD
...
...
SD48.cdb
View file @
de3a9a2a
No preview for this file type
pack/2025-09-06 SD48.ydk
View file @
de3a9a2a
...
...
@@ -4,5 +4,6 @@
100244003
100244004
100244005
100244006
100244032
100244033
\ No newline at end of file
pics/100244006.jpg
0 → 100644
View file @
de3a9a2a
91 KB
script/c100244006.lua
View file @
de3a9a2a
--
--
シンクロ・ワンウェイ
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
60800381
)
...
...
@@ -19,6 +19,7 @@ function s.initial_effect(c)
e2
:
SetRange
(
LOCATION_GRAVE
)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e2
:
SetCountLimit
(
1
,
id
)
e2
:
SetHintTiming
(
TIMING_END_PHASE
)
e2
:
SetCondition
(
s
.
setcon
)
e2
:
SetTarget
(
s
.
settg
)
e2
:
SetOperation
(
s
.
setop
)
...
...
@@ -41,16 +42,16 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
if
tc
:
IsAbleToHand
()
and
(
not
tc
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
or
ft
<=
0
or
Duel
.
SelectOption
(
tp
,
1190
,
1152
)
==
0
)
then
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
else
else
if
ft
>
0
and
tc
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
then
Duel
.
SpecialSummon
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
end
function
s
.
cfilter
(
c
)
return
c
:
IsFaceup
()
and
(
c
:
IsCode
(
60800381
)
or
aux
.
IsCodeListed
(
c
,
60800381
))
return
c
:
IsFaceup
()
and
(
c
:
IsCode
(
60800381
)
or
c
:
IsType
(
TYPE_MONSTER
)
and
aux
.
IsCodeListed
(
c
,
60800381
))
end
function
s
.
setcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
,
tp
,
LOCATION_
MZONE
,
0
,
1
,
nil
)
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
,
tp
,
LOCATION_
ONFIELD
,
0
,
1
,
nil
)
end
function
s
.
settg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsSSetable
()
end
...
...
@@ -58,7 +59,7 @@ function s.settg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
s
.
setop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToChain
()
and
Duel
.
SSet
(
tp
,
c
)
~=
0
then
if
c
:
IsRelateToChain
()
and
aux
.
NecroValleyFilter
()(
c
)
and
Duel
.
SSet
(
tp
,
c
)
~=
0
then
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_LEAVE_FIELD_REDIRECT
)
...
...
@@ -66,4 +67,4 @@ function s.setop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetValue
(
LOCATION_REMOVED
)
c
:
RegisterEffect
(
e1
)
end
end
\ No newline at end of file
end
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