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
4753d9cd
Commit
4753d9cd
authored
Mar 14, 2026
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
7c21332f
Pipeline
#43732
failed with stages
in 2 minutes and 15 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
31 additions
and
15 deletions
+31
-15
RV01.cdb
RV01.cdb
+0
-0
pack/2026-05-30 RV01.ydk
pack/2026-05-30 RV01.ydk
+7
-0
pics/field/100261006.jpg
pics/field/100261006.jpg
+0
-0
script/c100261001.lua
script/c100261001.lua
+2
-1
script/c100261002.lua
script/c100261002.lua
+12
-7
script/c100261003.lua
script/c100261003.lua
+3
-3
script/c100261005.lua
script/c100261005.lua
+3
-2
script/c100261006.lua
script/c100261006.lua
+4
-2
No files found.
RV01.cdb
View file @
4753d9cd
No preview for this file type
pack/2026-05-30 RV01.ydk
0 → 100644
View file @
4753d9cd
#created by superpre
100261001
100261002
100261003
100261005
100261006
101305076
\ No newline at end of file
pics/field/100261006.jpg
0 → 100644
View file @
4753d9cd
108 KB
script/c100261001.lua
View file @
4753d9cd
...
...
@@ -36,6 +36,7 @@ function s.sumfilter(e,c)
end
function
s
.
sumop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetFlagEffect
(
tp
,
id
)
~=
0
then
return
end
Duel
.
Hint
(
HINT_CARD
,
0
,
id
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
...
...
@@ -78,4 +79,4 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
end
end
end
end
\ No newline at end of file
end
script/c100261002.lua
View file @
4753d9cd
...
...
@@ -32,11 +32,10 @@ function s.addcon(e)
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
,
e
:
GetHandlerPlayer
(),
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
return
ph
==
PHASE_MAIN1
or
ph
==
PHASE_MAIN2
return
Duel
.
IsMainPhase
()
end
function
s
.
cfilter2
(
c
,
tp
)
return
c
:
IsReleasableByEffect
()
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
function
s
.
cfilter2
(
c
,
tp
,
skip
)
return
c
:
IsReleasableByEffect
()
and
(
skip
or
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
)
end
function
s
.
spfilter
(
c
,
e
,
tp
)
return
aux
.
IsCodeListed
(
c
,
15259703
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
true
,
false
)
...
...
@@ -46,7 +45,8 @@ function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
if
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
)
then
loc
=
LOCATION_MZONE
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter2
,
tp
,
LOCATION_MZONE
,
loc
,
1
,
nil
,
tp
)
and
Duel
.
IsExistingMatchingCard
(
s
.
spfilter
,
tp
,
LOCATION_HAND
+
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter2
,
tp
,
LOCATION_MZONE
,
loc
,
1
,
nil
,
tp
)
and
Duel
.
IsExistingMatchingCard
(
s
.
spfilter
,
tp
,
LOCATION_HAND
+
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_RELEASE
,
nil
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_HAND
+
LOCATION_DECK
)
end
...
...
@@ -56,7 +56,12 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
loc
=
LOCATION_MZONE
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
rg
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
cfilter2
,
tp
,
LOCATION_MZONE
,
loc
,
1
,
1
,
nil
,
tp
)
local
rg
if
Duel
.
IsExistingMatchingCard
(
s
.
cfilter2
,
tp
,
LOCATION_MZONE
,
loc
,
1
,
nil
,
tp
,
false
)
then
rg
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
cfilter2
,
tp
,
LOCATION_MZONE
,
loc
,
1
,
1
,
nil
,
tp
,
false
)
else
rg
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
cfilter2
,
tp
,
LOCATION_MZONE
,
loc
,
1
,
1
,
nil
,
tp
,
true
)
end
if
rg
:
GetCount
()
>
0
and
Duel
.
Release
(
rg
,
REASON_EFFECT
)
>
0
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
...
...
@@ -65,4 +70,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
SpecialSummon
(
sg
,
0
,
tp
,
tp
,
true
,
false
,
POS_FACEUP
)
end
end
end
\ No newline at end of file
end
script/c100261003.lua
View file @
4753d9cd
...
...
@@ -30,7 +30,7 @@ function s.initial_effect(c)
e3
:
SetCode
(
EVENT_FREE_CHAIN
)
e3
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetHintTiming
(
TIMINGS_CHECK_MONSTER
+
TIMING_END_PHASE
+
TIMING_DAMAGE_STEP
)
e3
:
SetHintTiming
(
TIMINGS_CHECK_MONSTER
+
TIMING_END_PHASE
)
e3
:
SetCountLimit
(
1
)
e3
:
SetTarget
(
s
.
tdtg
)
e3
:
SetOperation
(
s
.
tdop
)
...
...
@@ -64,7 +64,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
if
tc
:
IsAbleToHand
()
and
(
not
tc
:
IsSSetable
()
or
Duel
.
SelectOption
(
tp
,
1190
,
1153
)
==
0
)
then
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
else
else
if
tc
:
IsSSetable
()
then
Duel
.
SSet
(
tp
,
tc
)
end
end
...
...
@@ -88,4 +88,4 @@ function s.tdop(e,tp,eg,ep,ev,re,r,rp)
if
tc
:
IsRelateToChain
()
and
aux
.
NecroValleyFilter
()(
tc
)
then
Duel
.
SendtoDeck
(
tc
,
nil
,
SEQ_DECKBOTTOM
,
REASON_EFFECT
)
end
end
\ No newline at end of file
end
script/c100261005.lua
View file @
4753d9cd
...
...
@@ -3,6 +3,7 @@ local s,id,o=GetID()
function
s
.
initial_effect
(
c
)
c
:
EnableReviveLimit
()
aux
.
AddMaterialCodeList
(
c
,
53183600
)
aux
.
AddSetNameMonsterList
(
c
,
0x62
)
aux
.
AddFusionProcFunFun
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsFusionCode
,
53183600
),
s
.
ffilter
,
2
,
true
)
aux
.
AddContactFusionProcedure
(
c
,
s
.
cfilter
,
LOCATION_HAND
+
LOCATION_MZONE
+
LOCATION_GRAVE
,
0
,
aux
.
ContactFusionSendToDeck
(
c
))
--cannot special summon
...
...
@@ -49,7 +50,7 @@ function s.ffilter(c)
return
c
:
IsType
(
TYPE_TOON
)
end
function
s
.
thfilter
(
c
)
return
(
c
:
IsSetCard
(
0x62
)
or
c
:
IsCode
(
id
)
or
aux
.
IsCodeListed
(
c
,
15259703
))
return
(
c
:
IsSetCard
(
0x62
)
or
aux
.
IsSetNameMonsterListed
(
c
,
0x62
)
or
aux
.
IsCodeListed
(
c
,
15259703
))
and
c
:
IsAbleToHand
()
end
function
s
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
@@ -98,4 +99,4 @@ function s.retcon(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
retop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
ReturnToField
(
e
:
GetLabelObject
())
end
\ No newline at end of file
end
script/c100261006.lua
View file @
4753d9cd
...
...
@@ -28,7 +28,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
s
.
thfilter
(
c
)
return
(
c
:
IsSetCard
(
0x62
)
or
aux
.
IsCodeListed
(
c
,
15259703
))
return
(
c
:
IsSetCard
(
0x62
)
or
aux
.
Is
SetNameMonsterListed
(
c
,
0x62
)
or
aux
.
Is
CodeListed
(
c
,
15259703
))
and
c
:
IsAbleToHand
()
end
function
s
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
@@ -56,6 +56,8 @@ function s.rmop(e,tp,eg,ep,ev,re,r,rp)
if
Duel
.
SelectEffectYesNo
(
tp
,
e
:
GetHandler
(),
aux
.
Stringid
(
id
,
3
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
tg
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
rmfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
Duel
.
Hint
(
HINT_CARD
,
0
,
id
)
Duel
.
HintSelection
(
tg
)
local
rc
=
tg
:
GetFirst
()
if
Duel
.
Remove
(
rc
,
0
,
REASON_EFFECT
+
REASON_TEMPORARY
)
~=
0
then
rc
:
RegisterFlagEffect
(
id
,
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
,
0
,
1
)
...
...
@@ -89,4 +91,4 @@ function s.retcon(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
retop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
ReturnToField
(
e
:
GetLabelObject
())
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