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
Vury Leo
pre-release-database-cdb
Commits
dad935b0
You need to sign in or sign up before continuing.
Commit
dad935b0
authored
Jun 12, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
120c1daa
Changes
5
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 @@
101302015
101302016
101302017
101302033
101302034
101302204
101302036
101302205
...
...
@@ -21,5 +23,6 @@
101302061
101302062
101302063
101302066
101302209
101302076
\ No newline at end of file
script/c101302033.lua
View file @
dad935b0
...
...
@@ -5,7 +5,7 @@ function s.initial_effect(c)
--search
local
e1
=
Effect
.
CreateEffect
(
c
)
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
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
...
...
@@ -48,7 +48,7 @@ function s.srop(e,tp,eg,ep,ev,re,r,rp)
end
end
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
function
s
.
rcheck
(
gc
)
return
function
(
tp
,
g
,
c
)
...
...
@@ -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
)
end
function
s
.
rsop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
::
cancel
::
local
c
=
e
:
GetHandler
()
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
)
aux
.
RCheckAdditional
=
s
.
rcheck
(
c
)
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)
--protection
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_DRAW
+
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetRange
(
LOCATION_HAND
)
e1
:
SetCountLimit
(
1
,
id
)
...
...
@@ -34,7 +33,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e2
)
end
function
s
.
mat_filter
(
c
)
return
c
:
Is
Type
(
TYPE_RITUAL
)
return
c
:
Is
AllTypes
(
TYPE_RITUAL
+
TYPE_MONSTER
)
end
function
s
.
prcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
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)
end
function
s
.
actop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
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
)
end
end
...
...
@@ -78,7 +77,7 @@ function s.negtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
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
e
:
GetLabel
()
==
1
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)
local
tc
=
g
:
GetFirst
()
if
tc
then
Duel
.
BreakEffect
()
Duel
.
Release
(
tc
,
REASON_EFFECT
)
Duel
.
HintSelection
(
g
)
Duel
.
Release
(
g
,
REASON_EFFECT
)
end
end
end
\ No newline at end of file
script/c101302066.lua
View file @
dad935b0
...
...
@@ -17,10 +17,10 @@ function s.initial_effect(c)
e2
:
SetTarget
(
s
.
thtg
)
e2
:
SetOperation
(
s
.
thop
)
c
:
RegisterEffect
(
e2
)
--
draw
--
trigger
local
e3
=
Effect
.
CreateEffect
(
c
)
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
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
...
...
@@ -48,11 +48,12 @@ function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
s
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
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
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
s
.
gcheck
,
false
,
2
,
2
)
if
sg
then
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
end
end
end
...
...
@@ -96,9 +97,12 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
if
e
:
GetLabel
()
==
1
then
local
p
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_PLAYER
)
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
.
DiscardHand
(
p
,
nil
,
1
,
1
,
REASON_EFFECT
+
REASON_DISCARD
)
Duel
.
ShuffleHand
(
p
)
Duel
.
SendtoGrave
(
dg
,
REASON_EFFECT
+
REASON_DISCARD
,
p
)
end
end
elseif
e
:
GetLabel
()
==
2
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
...
...
@@ -106,7 +110,8 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
local
tc
=
g
:
GetFirst
()
if
tc
then
Duel
.
BreakEffect
()
Duel
.
Release
(
tc
,
REASON_EFFECT
)
Duel
.
HintSelection
(
g
)
Duel
.
Release
(
g
,
REASON_EFFECT
)
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