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
43de49a8
Commit
43de49a8
authored
Jul 25, 2025
by
Amiya
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.moenext.com:mycard/pre-release-database-cdb
parents
998fa932
d2e27c89
Pipeline
#39512
passed with stages
in 2 minutes and 51 seconds
Changes
9
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
31 additions
and
18 deletions
+31
-18
DOOD.cdb
DOOD.cdb
+0
-0
pack/2025-07-26 DOOD.ydk
pack/2025-07-26 DOOD.ydk
+9
-1
script/c101302027.lua
script/c101302027.lua
+9
-6
script/c101302028.lua
script/c101302028.lua
+3
-3
script/c101302029.lua
script/c101302029.lua
+1
-0
script/c101302048.lua
script/c101302048.lua
+2
-2
script/c101302052.lua
script/c101302052.lua
+1
-0
script/c101302072.lua
script/c101302072.lua
+3
-3
script/c101302080.lua
script/c101302080.lua
+3
-3
No files found.
DOOD.cdb
View file @
43de49a8
No preview for this file type
pack/2025-07-26 DOOD.ydk
View file @
43de49a8
...
...
@@ -25,7 +25,11 @@
101302024
101302025
101302026
101302027
101302028
101302029
101302030
101302031
101302032
101302033
101302034
...
...
@@ -42,9 +46,11 @@
101302045
101302046
101302047
101302048
101302207
101302050
101302051
101302052
101302053
101302208
101302055
...
...
@@ -64,10 +70,12 @@
101302069
101302070
101302071
101302072
101302209
101302074
101302075
101302076
101302077
101302078
101302079
\ No newline at end of file
101302079
101302080
\ No newline at end of file
script/c101302027.lua
View file @
43de49a8
--蹴神
-
VARefar
--蹴神
-
VARefar
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--special summon
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_
TOHAND
+
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetCategory
(
CATEGORY_
SPECIAL_SUMMON
+
CATEGORY_REMOVE
)
e1
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e1
:
SetCode
(
EVENT_BE_BATTLE_TARGET
)
e1
:
SetRange
(
LOCATION_HAND
)
...
...
@@ -36,6 +36,8 @@ end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
e
:
GetHandler
():
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
local
ac
=
Duel
.
GetAttacker
()
Duel
.
SetTargetCard
(
ac
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
e
:
GetHandler
(),
1
,
0
,
0
)
end
function
s
.
cfilter2
(
c
,
ac
)
...
...
@@ -47,8 +49,8 @@ end
function
s
.
spop1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToChain
()
and
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
local
ac
=
Duel
.
Get
Attacker
()
if
ac
and
ac
:
IsRelateTo
Battle
(
)
then
local
ac
=
Duel
.
Get
FirstTarget
()
if
ac
and
ac
:
IsRelateTo
Chain
()
and
ac
:
IsType
(
TYPE_MONSTER
)
then
s
.
cfop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
ac
)
end
end
...
...
@@ -63,16 +65,17 @@ function s.spop2(e,tp,eg,ep,ev,re,r,rp)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToChain
()
and
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
local
ac
=
Duel
.
GetFirstTarget
()
if
ac
and
ac
:
IsRelateTo
Effect
(
e
)
and
ac
:
IsType
(
TYPE_MONSTER
)
then
if
ac
and
ac
:
IsRelateTo
Chain
(
)
and
ac
:
IsType
(
TYPE_MONSTER
)
then
s
.
cfop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
ac
)
end
end
end
function
s
.
cfop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
ac
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
cfilter2
,
tp
,
LOCATION_HAND
,
0
,
nil
,
ac
)
if
not
ac
:
IsLocation
(
LOCATION_MZONE
)
then
return
end
if
not
ac
:
IsLocation
(
LOCATION_MZONE
)
or
not
ac
:
IsControler
(
1
-
tp
)
then
return
end
if
g
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
1
))
then
Duel
.
BreakEffect
()
Duel
.
HintSelection
(
Group
.
FromCards
(
ac
))
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_CONFIRM
)
local
tc
=
g
:
Select
(
tp
,
1
,
1
,
nil
):
GetFirst
()
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
...
...
script/c101302028.lua
View file @
43de49a8
...
...
@@ -30,7 +30,7 @@ function s.initial_effect(c)
e3
:
SetCategory
(
CATEGORY_TOHAND
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetCode
(
EVENT_CHANGE_POS
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
+
EFFECT_FLAG_CARD_TARGET
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCountLimit
(
1
)
e3
:
SetCondition
(
s
.
thcon
)
...
...
@@ -42,9 +42,9 @@ function s.costfilter(c)
return
c
:
IsType
(
TYPE_SPELL
)
and
c
:
IsAbleToRemoveAsCost
()
end
function
s
.
spcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
costfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
costfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
e
:
GetHandler
()
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
costfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
costfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
e
:
GetHandler
()
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_COST
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
script/c101302029.lua
View file @
43de49a8
...
...
@@ -74,6 +74,7 @@ function s.gspop(e,tp,eg,ep,ev,re,r,rp)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_SET_ATTACK
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetValue
(
1000
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
tc
:
RegisterEffect
(
e1
)
...
...
script/c101302048.lua
View file @
43de49a8
--漆梏の喰獣
ケルゼブス
--漆梏の喰獣 ケルゼブス
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
c
:
EnableReviveLimit
()
...
...
@@ -38,7 +38,7 @@ function s.atkval(e,c)
end
function
s
.
matcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
:
IsHasType
(
EFFECT_TYPE_ACTIVATE
)
and
re
:
IsActiveType
(
TYPE_QUICKPLAY
)
or
re
:
GetHandler
():
GetType
()
==
TYPE_SPELL
and
(
re
:
IsActiveType
(
TYPE_QUICKPLAY
)
or
re
:
GetHandler
():
GetType
()
==
TYPE_SPELL
)
end
function
s
.
mattg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
re
:
GetHandler
():
IsCanOverlay
()
and
e
:
GetHandler
():
IsType
(
TYPE_XYZ
)
end
...
...
script/c101302052.lua
View file @
43de49a8
...
...
@@ -47,6 +47,7 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
s
.
thfilter
),
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
if
not
tc
then
return
end
Duel
.
HintSelection
(
g
)
if
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
~=
0
and
tc
:
IsLocation
(
LOCATION_HAND
)
then
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
...
...
script/c101302072.lua
View file @
43de49a8
...
...
@@ -37,13 +37,13 @@ end
function
s
.
tgtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
c
=
e
:
GetHandler
()
if
chkc
then
return
chkc
:
IsControler
(
1
-
tp
)
and
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsFaceup
()
end
if
chk
==
0
then
return
Duel
.
RemoveCounter
(
tp
,
1
,
0
,
0x70
,
1
,
REASON_COST
)
if
chk
==
0
then
return
Duel
.
IsCan
RemoveCounter
(
tp
,
1
,
0
,
0x70
,
1
,
REASON_COST
)
and
Duel
.
IsExistingTarget
(
Card
.
IsFaceup
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
local
tc
=
Duel
.
SelectTarget
(
tp
,
Card
.
IsFaceup
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
):
GetFirst
()
local
b1
=
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x70
,
1
,
REASON_COST
)
local
b2
=
not
tc
:
IsAttack
(
0
)
and
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x70
,
2
,
REASON_COST
)
local
b3
=
aux
.
NegateEffectMonsterFilter
(
tc
)
and
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x70
,
3
,
REASON_COST
)
local
b2
=
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x70
,
2
,
REASON_COST
)
and
not
tc
:
IsAttack
(
0
)
local
b3
=
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x70
,
3
,
REASON_COST
)
and
aux
.
NegateEffectMonsterFilter
(
tc
)
local
b4
=
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x70
,
4
,
REASON_COST
)
local
op
=
aux
.
SelectFromOptions
(
tp
,
{
b1
,
aux
.
Stringid
(
id
,
1
),
1
},
...
...
script/c101302080.lua
View file @
43de49a8
--
--
お菊さんの皿算用
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
c
:
EnableCounterPermit
(
0x71
)
...
...
@@ -7,7 +7,7 @@ function s.initial_effect(c)
e0
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e0
:
SetCode
(
EVENT_FREE_CHAIN
)
c
:
RegisterEffect
(
e0
)
--add count
--add count
er
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_COUNTER
)
...
...
@@ -41,7 +41,7 @@ function s.initial_effect(c)
e4
:
SetCondition
(
s
.
adjustcon
)
e4
:
SetOperation
(
s
.
adjustop
)
c
:
RegisterEffect
(
e4
)
--
--
deckdes
local
e5
=
Effect
.
CreateEffect
(
c
)
e5
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e5
:
SetCategory
(
CATEGORY_TOGRAVE
+
CATEGORY_DECKDES
)
...
...
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