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
865d5fd8
Commit
865d5fd8
authored
Aug 09, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
4018616e
Pipeline
#40030
passed with stages
in 4 minutes and 15 seconds
Changes
10
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
28 additions
and
18 deletions
+28
-18
DBPR.cdb
DBPR.cdb
+0
-0
script/c100245016.lua
script/c100245016.lua
+1
-1
script/c100245017.lua
script/c100245017.lua
+1
-1
script/c100245018.lua
script/c100245018.lua
+1
-1
script/c100245019.lua
script/c100245019.lua
+1
-1
script/c100245021.lua
script/c100245021.lua
+1
-1
script/c100245022.lua
script/c100245022.lua
+1
-1
script/c100245023.lua
script/c100245023.lua
+1
-1
script/c100245024.lua
script/c100245024.lua
+19
-9
script/c100245025.lua
script/c100245025.lua
+2
-2
No files found.
DBPR.cdb
View file @
865d5fd8
No preview for this file type
script/c100245016.lua
View file @
865d5fd8
...
...
@@ -156,4 +156,4 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
HintSelection
(
g
)
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
end
end
\ No newline at end of file
end
script/c100245017.lua
View file @
865d5fd8
...
...
@@ -193,4 +193,4 @@ function s.retop(e,tp,eg,ep,ev,re,r,rp)
g
:
DeleteGroup
()
local
tc
=
sg
:
GetFirst
()
Duel
.
SendtoHand
(
tc
,
tc
:
GetPreviousControler
(),
REASON_EFFECT
)
end
\ No newline at end of file
end
script/c100245018.lua
View file @
865d5fd8
...
...
@@ -168,4 +168,4 @@ function s.disop(e,tp,eg,ep,ev,re,r,rp)
e2
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
)
tc
:
RegisterEffect
(
e2
)
end
end
\ No newline at end of file
end
script/c100245019.lua
View file @
865d5fd8
...
...
@@ -154,4 +154,4 @@ function s.tdop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
HintSelection
(
g
)
Duel
.
SendtoDeck
(
g
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
end
end
\ No newline at end of file
end
script/c100245021.lua
View file @
865d5fd8
...
...
@@ -175,4 +175,4 @@ function s.effval(e,re,rp)
local
c
=
e
:
GetLabelObject
()
local
p
=
c
:
GetControler
()
return
rp
==
1
-
p
end
\ No newline at end of file
end
script/c100245022.lua
View file @
865d5fd8
...
...
@@ -166,4 +166,4 @@ function s.posop(e,tp,eg,ep,ev,re,r,rp)
tc
:
RegisterEffect
(
e1
)
end
end
end
\ No newline at end of file
end
script/c100245023.lua
View file @
865d5fd8
...
...
@@ -178,4 +178,4 @@ function s.damop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_CARD
,
0
,
id
)
Duel
.
Damage
(
1
-
p
,
900
,
REASON_EFFECT
)
end
end
\ No newline at end of file
end
script/c100245024.lua
View file @
865d5fd8
...
...
@@ -47,7 +47,7 @@ function s.thfilter(c)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x2d5
)
and
c
:
GetOriginalType
()
&
TYPE_PENDULUM
~=
0
end
function
s
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_ONFIELD
)
and
chkc
:
IsControler
(
tp
)
and
s
:
thfilter
(
chk
)
end
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_ONFIELD
)
and
chkc
:
IsControler
(
tp
)
and
s
.
thfilter
(
chkc
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
thfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RTOHAND
)
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
thfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
99
,
nil
)
...
...
@@ -61,14 +61,14 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
pthfilter
(
c
,
tp
)
return
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsSetCard
(
0x2d5
)
and
c
:
IsControler
(
tp
)
return
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsSetCard
(
0x2d5
)
and
c
:
IsControler
(
tp
)
and
c
:
IsFaceup
()
and
(
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
0
)
or
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
1
)
or
c
:
IsAbleToHand
())
end
function
s
.
pthcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
pthfilter
,
1
,
nil
,
tp
)
and
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
and
Duel
.
IsMainPhase
(
)
end
function
s
.
pthtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
g
=
eg
:
Filter
(
s
.
pthfilter
,
nil
,
tp
)
...
...
@@ -76,7 +76,6 @@ function s.pthtg(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetTargetCard
(
g
)
end
function
s
.
pthop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
g
=
eg
:
Filter
(
s
.
pthfilter
,
nil
,
tp
)
local
mg
=
g
:
Filter
(
Card
.
IsRelateToChain
,
nil
)
if
mg
:
GetCount
()
>
0
then
...
...
@@ -91,6 +90,7 @@ function s.pthop(e,tp,eg,ep,ev,re,r,rp)
if
op
==
1
then
Duel
.
MoveToField
(
tc
,
tp
,
tp
,
LOCATION_PZONE
,
POS_FACEUP
,
true
)
else
Duel
.
HintSelection
(
og
)
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
end
end
...
...
@@ -104,10 +104,20 @@ function s.damtg(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
dam
)
end
end
function
s
.
ctfilter
(
c
)
return
c
:
GetCounter
(
0x73
)
>
0
end
function
s
.
damop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ct
=
Duel
.
GetCounter
(
tp
,
1
,
0
,
0x73
)
if
ct
>
0
then
Duel
.
RemoveCounter
(
tp
,
1
,
0
,
0x73
,
ct
,
REASON_EFFECT
)
Duel
.
Damage
(
1
-
tp
,
ct
*
900
,
REASON_EFFECT
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
ctfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
nil
)
local
tc
=
g
:
GetFirst
()
local
rmct
=
0
while
tc
do
local
ct
=
tc
:
GetCounter
(
0x73
)
rmct
=
rmct
+
ct
tc
:
RemoveCounter
(
tp
,
0x73
,
ct
,
REASON_EFFECT
)
tc
=
g
:
GetNext
()
end
end
\ No newline at end of file
if
rmct
>
0
then
Duel
.
Damage
(
1
-
tp
,
rmct
*
900
,
REASON_EFFECT
)
end
end
script/c100245025.lua
View file @
865d5fd8
...
...
@@ -31,7 +31,7 @@ function s.zones(e,tp,eg,ep,ev,re,r,rp)
return
zone
end
function
s
.
psfilter
(
c
)
return
c
:
IsSetCard
(
0x2d5
)
and
c
:
Is
Type
(
TYPE_PENDULUM
)
and
not
c
:
IsForbidden
()
return
c
:
IsSetCard
(
0x2d5
)
and
c
:
Is
AllTypes
(
TYPE_PENDULUM
+
TYPE_MONSTER
)
and
not
c
:
IsForbidden
()
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
(
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
0
)
or
Duel
.
CheckLocation
(
tp
,
LOCATION_PZONE
,
1
))
...
...
@@ -59,4 +59,4 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
SendtoHand
(
g
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
end
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