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
dad935b0
Commit
dad935b0
authored
Jun 12, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
120c1daa
Pipeline
#37503
passed with stages
in 2 minutes and 50 seconds
Changes
5
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
18 deletions
+26
-18
DOOD.cdb
DOOD.cdb
+0
-0
pack/2025-07-26 DOOD.ydk
pack/2025-07-26 DOOD.ydk
+3
-0
script/c101302033.lua
script/c101302033.lua
+6
-6
script/c101302034.lua
script/c101302034.lua
+5
-5
script/c101302066.lua
script/c101302066.lua
+12
-7
No files found.
DOOD.cdb
View file @
dad935b0
No preview for this file type
pack/2025-07-26 DOOD.ydk
View file @
dad935b0
...
@@ -9,6 +9,8 @@
...
@@ -9,6 +9,8 @@
101302015
101302015
101302016
101302016
101302017
101302017
101302033
101302034
101302204
101302204
101302036
101302036
101302205
101302205
...
@@ -21,5 +23,6 @@
...
@@ -21,5 +23,6 @@
101302061
101302061
101302062
101302062
101302063
101302063
101302066
101302209
101302209
101302076
101302076
\ No newline at end of file
script/c101302033.lua
View file @
dad935b0
...
@@ -5,7 +5,7 @@ function s.initial_effect(c)
...
@@ -5,7 +5,7 @@ function s.initial_effect(c)
--search
--search
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_
SEARCH
+
CATEGORY_
TOHAND
)
e1
:
SetCategory
(
CATEGORY_TOHAND
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
...
@@ -48,7 +48,7 @@ function s.srop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -48,7 +48,7 @@ function s.srop(e,tp,eg,ep,ev,re,r,rp)
end
end
end
end
function
s
.
rscon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
rscon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
return
Duel
.
IsMainPhase
()
end
end
function
s
.
rcheck
(
gc
)
function
s
.
rcheck
(
gc
)
return
function
(
tp
,
g
,
c
)
return
function
(
tp
,
g
,
c
)
...
@@ -71,10 +71,10 @@ function s.rstg(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -71,10 +71,10 @@ function s.rstg(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_GRAVE
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_GRAVE
)
end
end
function
s
.
rsop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
rsop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
::
cancel
::
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
mg
=
Duel
.
GetRitualMaterial
(
tp
)
local
mg
=
Duel
.
GetRitualMaterial
(
tp
)
if
c
:
IsControler
(
1
-
tp
)
or
not
c
:
IsRelateToEffect
(
e
)
or
not
mg
:
IsContains
(
c
)
then
return
end
if
c
:
IsControler
(
1
-
tp
)
or
not
c
:
IsRelateToChain
()
or
not
mg
:
IsContains
(
c
)
then
return
end
::
cancel
::
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
aux
.
RCheckAdditional
=
s
.
rcheck
(
c
)
aux
.
RCheckAdditional
=
s
.
rcheck
(
c
)
local
tg
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
s
.
rsfilter
),
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
e
,
tp
,
mg
)
local
tg
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
s
.
rsfilter
),
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
e
,
tp
,
mg
)
...
...
script/c101302034.lua
View file @
dad935b0
...
@@ -12,7 +12,6 @@ function s.initial_effect(c)
...
@@ -12,7 +12,6 @@ function s.initial_effect(c)
--protection
--protection
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_DRAW
+
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetRange
(
LOCATION_HAND
)
e1
:
SetRange
(
LOCATION_HAND
)
e1
:
SetCountLimit
(
1
,
id
)
e1
:
SetCountLimit
(
1
,
id
)
...
@@ -34,7 +33,7 @@ function s.initial_effect(c)
...
@@ -34,7 +33,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
end
end
function
s
.
mat_filter
(
c
)
function
s
.
mat_filter
(
c
)
return
c
:
Is
Type
(
TYPE_RITUAL
)
return
c
:
Is
AllTypes
(
TYPE_RITUAL
+
TYPE_MONSTER
)
end
end
function
s
.
prcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
prcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
not
e
:
GetHandler
():
IsPublic
()
end
if
chk
==
0
then
return
not
e
:
GetHandler
():
IsPublic
()
end
...
@@ -49,7 +48,7 @@ function s.prop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -49,7 +48,7 @@ function s.prop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
actop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
actop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
rc
=
re
:
GetHandler
()
local
rc
=
re
:
GetHandler
()
if
rc
:
IsAllTypes
(
TYPE_MONSTER
+
TYPE_RITUAL
)
and
rc
:
IsSetCard
(
0x138
)
and
ep
==
tp
then
if
rc
:
IsAllTypes
(
TYPE_MONSTER
+
TYPE_RITUAL
)
and
rc
:
IsSetCard
(
0x138
)
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
ep
==
tp
then
Duel
.
SetChainLimit
(
s
.
chainlm
)
Duel
.
SetChainLimit
(
s
.
chainlm
)
end
end
end
end
...
@@ -78,7 +77,7 @@ function s.negtg(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -78,7 +77,7 @@ function s.negtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
end
end
function
s
.
negop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
negop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
NegateActivation
(
ev
)
and
re
:
GetHandler
():
IsRelateTo
Effect
(
re
)
if
Duel
.
NegateActivation
(
ev
)
and
re
:
GetHandler
():
IsRelateTo
Chain
(
ev
)
and
Duel
.
Destroy
(
eg
,
REASON_EFFECT
)
~=
0
and
Duel
.
Destroy
(
eg
,
REASON_EFFECT
)
~=
0
and
e
:
GetLabel
()
==
1
and
e
:
GetLabel
()
==
1
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsReleasableByEffect
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsReleasableByEffect
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
...
@@ -88,7 +87,8 @@ function s.negop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -88,7 +87,8 @@ function s.negop(e,tp,eg,ep,ev,re,r,rp)
local
tc
=
g
:
GetFirst
()
local
tc
=
g
:
GetFirst
()
if
tc
then
if
tc
then
Duel
.
BreakEffect
()
Duel
.
BreakEffect
()
Duel
.
Release
(
tc
,
REASON_EFFECT
)
Duel
.
HintSelection
(
g
)
Duel
.
Release
(
g
,
REASON_EFFECT
)
end
end
end
end
end
end
\ No newline at end of file
script/c101302066.lua
View file @
dad935b0
...
@@ -17,10 +17,10 @@ function s.initial_effect(c)
...
@@ -17,10 +17,10 @@ function s.initial_effect(c)
e2
:
SetTarget
(
s
.
thtg
)
e2
:
SetTarget
(
s
.
thtg
)
e2
:
SetOperation
(
s
.
thop
)
e2
:
SetOperation
(
s
.
thop
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
--
draw
--
trigger
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e3
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e3
:
SetCategory
(
CATEGORY_DRAW
+
CATEGORY_RELEASE
)
e3
:
SetCategory
(
CATEGORY_DRAW
+
CATEGORY_RELEASE
+
CATEGORY_HANDES
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e3
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
...
@@ -48,11 +48,12 @@ function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -48,11 +48,12 @@ function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
function
s
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
if
#
g
>
0
then
if
#
g
>
0
and
g
:
CheckSubGroup
(
s
.
gcheck
,
2
,
2
)
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
s
.
gcheck
,
false
,
2
,
2
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
s
.
gcheck
,
false
,
2
,
2
)
if
sg
then
if
sg
then
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
end
end
end
end
end
end
...
@@ -96,9 +97,12 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -96,9 +97,12 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
if
e
:
GetLabel
()
==
1
then
if
e
:
GetLabel
()
==
1
then
local
p
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_PLAYER
)
local
p
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_PLAYER
)
if
Duel
.
Draw
(
p
,
2
,
REASON_EFFECT
)
==
2
then
if
Duel
.
Draw
(
p
,
2
,
REASON_EFFECT
)
==
2
then
Duel
.
ShuffleHand
(
p
)
local
dg
=
Duel
.
SelectMatchingCard
(
p
,
Card
.
IsDiscardable
,
p
,
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
REASON_EFFECT
+
REASON_DISCARD
)
if
dg
:
GetCount
()
>
0
then
Duel
.
BreakEffect
()
Duel
.
BreakEffect
()
Duel
.
DiscardHand
(
p
,
nil
,
1
,
1
,
REASON_EFFECT
+
REASON_DISCARD
)
Duel
.
ShuffleHand
(
p
)
Duel
.
SendtoGrave
(
dg
,
REASON_EFFECT
+
REASON_DISCARD
,
p
)
end
end
end
elseif
e
:
GetLabel
()
==
2
then
elseif
e
:
GetLabel
()
==
2
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
...
@@ -106,7 +110,8 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -106,7 +110,8 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
local
tc
=
g
:
GetFirst
()
local
tc
=
g
:
GetFirst
()
if
tc
then
if
tc
then
Duel
.
BreakEffect
()
Duel
.
BreakEffect
()
Duel
.
Release
(
tc
,
REASON_EFFECT
)
Duel
.
HintSelection
(
g
)
Duel
.
Release
(
g
,
REASON_EFFECT
)
end
end
end
end
end
end
\ No newline at end of file
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