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
f7f12ed2
Commit
f7f12ed2
authored
Jun 17, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix R.B.
parent
651b1e8d
Pipeline
#37734
failed with stages
in 2 minutes and 35 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
15 deletions
+22
-15
DUAD-EN.cdb
DUAD-EN.cdb
+0
-0
script/c101301090.lua
script/c101301090.lua
+3
-2
script/c101301091.lua
script/c101301091.lua
+5
-3
script/c101301092.lua
script/c101301092.lua
+4
-4
script/c101301093.lua
script/c101301093.lua
+2
-1
script/c101301095.lua
script/c101301095.lua
+5
-2
script/c101301096.lua
script/c101301096.lua
+3
-3
No files found.
DUAD-EN.cdb
View file @
f7f12ed2
No preview for this file type
script/c101301090.lua
View file @
f7f12ed2
...
...
@@ -18,6 +18,7 @@ function s.initial_effect(c)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e2
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_MAIN_END
)
e2
:
SetCountLimit
(
1
,
id
)
e2
:
SetCondition
(
s
.
descon
)
e2
:
SetCost
(
s
.
descost
)
...
...
@@ -37,13 +38,13 @@ function s.ecfilter(c)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x2d2
)
and
c
:
IsType
(
TYPE_LINK
)
end
function
s
.
descon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
not
Duel
.
IsMainPhase
()
then
return
false
end
local
lg
=
Duel
.
GetMatchingGroup
(
s
.
ecfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
)
local
lg2
=
Group
.
CreateGroup
()
for
lc
in
aux
.
Next
(
lg
)
do
lg2
:
Merge
(
lc
:
GetLinkedGroup
())
end
return
lg2
and
lg2
:
IsContains
(
e
:
GetHandler
())
and
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
end
function
s
.
descost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
CheckLPCost
(
tp
,
500
)
end
...
...
@@ -60,7 +61,7 @@ end
function
s
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
GetFirstTarget
()
if
c
:
IsRelateToChain
()
and
tc
:
IsRelateToChain
()
then
if
c
:
IsRelateToChain
()
and
tc
:
IsRelateToChain
()
and
tc
:
IsType
(
TYPE_MONSTER
)
then
local
g
=
Group
.
FromCards
(
c
,
tc
)
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
end
...
...
script/c101301091.lua
View file @
f7f12ed2
...
...
@@ -15,7 +15,6 @@ function s.initial_effect(c)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetCategory
(
CATEGORY_DISABLE
+
CATEGORY_DESTROY
)
e2
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e2
:
SetProperty
(
EFFECT_FLAG_DAMAGE_STEP
+
EFFECT_FLAG_DAMAGE_CAL
)
e2
:
SetCode
(
EVENT_CHAINING
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetCountLimit
(
1
,
id
)
...
...
@@ -54,12 +53,15 @@ function s.distg(e,tp,eg,ep,ev,re,r,rp,chk)
if
chk
==
0
then
return
true
end
Duel
.
Hint
(
HINT_OPSELECTED
,
1
-
tp
,
e
:
GetDescription
())
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DISABLE
,
eg
,
1
,
0
,
0
)
local
dg
=
Group
.
FromCards
(
e
:
GetHandler
())
if
re
:
GetHandler
():
IsDestructable
()
and
re
:
GetHandler
():
IsRelateToEffect
(
re
)
then
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
eg
,
1
,
0
,
0
)
dg
:
Merge
(
eg
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
dg
,
#
dg
,
0
,
0
)
end
function
s
.
disop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
NegateEffect
(
ev
)
and
re
:
GetHandler
():
IsRelateToEffect
(
re
)
then
local
c
=
e
:
GetHandler
()
if
Duel
.
Destroy
(
c
,
REASON_EFFECT
)
>
0
and
Duel
.
NegateEffect
(
ev
)
and
re
:
GetHandler
():
IsRelateToChain
(
ev
)
then
Duel
.
Destroy
(
eg
,
REASON_EFFECT
)
end
end
\ No newline at end of file
script/c101301092.lua
View file @
f7f12ed2
...
...
@@ -51,14 +51,14 @@ function s.destg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsControler
(
1
-
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
aux
.
TRUE
,
tp
,
0
,
LOCATION_ONFIELD
,
2
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
g
=
Duel
.
SelectTarget
(
tp
,
aux
.
TRUE
,
tp
,
0
,
LOCATION_
MZONE
,
2
,
2
,
nil
)
local
g
=
Duel
.
SelectTarget
(
tp
,
aux
.
TRUE
,
tp
,
0
,
LOCATION_
ONFIELD
,
2
,
2
,
nil
)
g
:
AddCard
(
e
:
GetHandler
())
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
2
,
3
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
#
g
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
#
g
*
500
)
end
function
s
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
local
tg
=
g
:
Filter
(
Card
.
IsRelateToChain
,
nil
)
local
tg
=
Duel
.
GetTargetsRelateToChain
()
if
tg
:
GetCount
()
>
0
and
c
:
IsRelateToChain
()
then
tg
:
AddCard
(
c
)
if
Duel
.
Destroy
(
tg
,
REASON_EFFECT
)
~=
0
then
...
...
script/c101301093.lua
View file @
f7f12ed2
...
...
@@ -36,6 +36,7 @@ function s.thfilter(c)
end
function
s
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_OPSELECTED
,
1
-
tp
,
e
:
GetDescription
())
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
function
s
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
@@ -55,6 +56,7 @@ 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
Duel
.
IsExistingMatchingCard
(
s
.
spfilter
,
tp
,
LOCATION_GRAVE
+
LOCATION_HAND
,
0
,
1
,
nil
,
e
,
tp
)
end
Duel
.
Hint
(
HINT_OPSELECTED
,
1
-
tp
,
e
:
GetDescription
())
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_GRAVE
+
LOCATION_HAND
)
end
function
s
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
@@ -71,7 +73,6 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
local
fd
=
Duel
.
SelectDisableField
(
tp
,
1
,
LOCATION_MZONE
,
0
,
0
)
Duel
.
Hint
(
HINT_ZONE
,
tp
,
fd
)
local
seq
=
math.log
(
fd
,
2
)
local
pseq
=
c
:
GetSequence
()
Duel
.
MoveSequence
(
c
,
seq
)
end
end
...
...
script/c101301095.lua
View file @
f7f12ed2
...
...
@@ -22,7 +22,7 @@ function s.initial_effect(c)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
+
EFFECT_FLAG_CARD_TARGET
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e3
:
SetRange
(
LOCATION_FZONE
)
e3
:
SetCode
(
EVENT_LEAVE_FIELD
)
e3
:
SetCountLimit
(
1
,
id
)
...
...
@@ -54,7 +54,10 @@ function s.reccon(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
recop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
rec
=
eg
:
FilterCount
(
s
.
cfilter
,
nil
,
tp
)
Duel
.
Recover
(
tp
,
rec
*
500
,
REASON_EFFECT
)
if
rec
>
0
then
Duel
.
Hint
(
HINT_CARD
,
0
,
id
)
Duel
.
Recover
(
tp
,
rec
*
500
,
REASON_EFFECT
)
end
end
function
s
.
cspfilter
(
c
,
tp
)
return
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
IsPreviousPosition
(
POS_FACEUP
)
and
c
:
IsPreviousControler
(
tp
)
and
c
:
IsPreviousSetCard
(
0x2d2
)
...
...
script/c101301096.lua
View file @
f7f12ed2
...
...
@@ -22,7 +22,7 @@ function s.initial_effect(c)
Duel
.
AddCustomActivityCounter
(
id
,
ACTIVITY_SPSUMMON
,
s
.
counterfilter
)
end
function
s
.
counterfilter
(
c
)
return
not
c
:
IsSummonLocation
(
LOCATION_EXTRA
)
or
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
IsAttackBelow
(
1500
)
return
not
c
:
IsSummonLocation
(
LOCATION_EXTRA
)
or
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
GetTextAttack
()
>=
0
and
c
:
GetTextAttack
()
<=
1500
end
function
s
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetCustomActivityCount
(
id
,
tp
,
ACTIVITY_SPSUMMON
)
==
0
end
...
...
@@ -36,11 +36,11 @@ function s.cost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
s
.
splimit
(
e
,
c
)
return
c
:
IsLocation
(
LOCATION_EXTRA
)
and
not
(
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
IsAttackBelow
(
1500
)
)
return
c
:
IsLocation
(
LOCATION_EXTRA
)
and
not
(
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
GetTextAttack
()
>=
0
and
c
:
GetTextAttack
()
<=
1500
)
end
function
s
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsSetCard
(
0x2d2
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
Duel
.
IsExistingMatchingCard
(
aux
.
AND
(
Card
.
IsFaceup
,
Card
.
IsCode
),
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
,
e
:
GetCode
())
and
not
Duel
.
IsExistingMatchingCard
(
aux
.
AND
(
Card
.
IsFaceup
,
Card
.
IsCode
),
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
e
:
GetCode
())
and
(
c
:
IsLocation
(
LOCATION_DECK
)
and
Duel
.
GetMZoneCount
(
tp
)
>
0
or
c
:
IsLocation
(
LOCATION_EXTRA
)
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
nil
,
c
)
>
0
)
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