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
0501c591
Commit
0501c591
authored
Aug 13, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 糾罪巧-裁誕
parent
aee3cb63
Pipeline
#40158
passed with stages
in 2 minutes and 9 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
7 deletions
+22
-7
DBPR.cdb
DBPR.cdb
+0
-0
pack/2025-08-23 DBPR.ydk
pack/2025-08-23 DBPR.ydk
+1
-0
pics/100245026.jpg
pics/100245026.jpg
+0
-0
script/c100245026.lua
script/c100245026.lua
+19
-5
script/c100245039.lua
script/c100245039.lua
+1
-1
script/c100245040.lua
script/c100245040.lua
+1
-1
No files found.
DBPR.cdb
View file @
0501c591
No preview for this file type
pack/2025-08-23 DBPR.ydk
View file @
0501c591
...
...
@@ -20,6 +20,7 @@
100245023
100245024
100245025
100245026
100245031
100245032
100245033
...
...
pics/100245026.jpg
0 → 100644
View file @
0501c591
99.2 KB
script/c100245026.lua
View file @
0501c591
--糾罪巧-裁
诞
--糾罪巧-裁
誕
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_TODECK
+
CATEGORY_DRAW
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
...
...
@@ -22,7 +23,7 @@ function s.initial_effect(c)
e2
:
SetCondition
(
s
.
spcon
)
e2
:
SetCost
(
aux
.
bfgcost
)
e2
:
SetTarget
(
s
.
sptg
)
e2
:
SetOperation
(
s
.
sp
op
)
e2
:
SetOperation
(
s
.
fs
op
)
c
:
RegisterEffect
(
e2
)
local
e3
=
e2
:
Clone
()
e3
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
...
...
@@ -42,10 +43,21 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
p
,
HINTMSG_TODECK
)
local
g
=
Duel
.
SelectMatchingCard
(
p
,
s
.
tdfilter
,
p
,
LOCATION_HAND
+
LOCATION_ONFIELD
,
0
,
1
,
63
,
nil
)
if
g
:
GetCount
()
>
0
then
local
fg
=
g
:
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_ONFIELD
)
if
#
fg
>
0
then
Duel
.
HintSelection
(
fg
)
end
local
hg
=
g
:
Filter
(
Card
.
IsLocation
,
nil
,
LOCATION_HAND
)
if
#
hg
>
0
then
Duel
.
ConfirmCards
(
1
-
p
,
hg
)
end
local
ct
=
Duel
.
SendtoDeck
(
g
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
Duel
.
ShuffleDeck
(
p
)
Duel
.
BreakEffect
()
Duel
.
Draw
(
p
,
ct
,
REASON_EFFECT
)
local
rt
=
g
:
FilterCount
(
Card
.
IsLocation
,
nil
,
LOCATION_DECK
+
LOCATION_EXTRA
)
if
rt
>
0
then
Duel
.
BreakEffect
()
Duel
.
Draw
(
p
,
ct
,
REASON_EFFECT
)
end
end
end
function
s
.
cfilter
(
c
,
sp
)
...
...
@@ -87,6 +99,7 @@ function s.fsop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
spfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEDOWN_DEFENSE
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
end
end
elseif
e
:
GetLabel
()
==
2
then
...
...
@@ -94,7 +107,8 @@ function s.fsop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
posfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
if
tc
then
Duel
.
HintSelection
(
g
)
Duel
.
ChangePosition
(
tc
,
POS_FACEUP_DEFENSE
)
end
end
end
\ No newline at end of file
end
script/c100245039.lua
View file @
0501c591
...
...
@@ -54,4 +54,4 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
c
:
GetOriginalType
()
&
TYPE_TUNER
==
0
end
\ No newline at end of file
end
script/c100245040.lua
View file @
0501c591
...
...
@@ -88,4 +88,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
c
:
GetOriginalType
()
&
TYPE_TUNER
==
0
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