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
Ruby
pre-release-database-cdb
Commits
a2da18ae
Commit
a2da18ae
authored
Oct 08, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
a1f1e4e2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
11 deletions
+8
-11
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
BPRO.cdb
BPRO.cdb
+0
-0
etc.cdb
etc.cdb
+0
-0
pack/2025-10-25 BPRO.ydk
pack/2025-10-25 BPRO.ydk
+1
-0
pics/101303029.jpg
pics/101303029.jpg
+0
-0
script/c101303029.lua
script/c101303029.lua
+6
-10
No files found.
.gitlab-ci.yml
View file @
a2da18ae
...
...
@@ -91,7 +91,7 @@ add_script_diff:
FIELDS
:
'
name,desc,overallString,picUrl'
GIT_DEPTH
:
'
1000'
OUTPUT_FILENAME
:
test-release.json
REF_COMMIT
:
'
18.
4
'
# 更新的时候改这里,修改成上一个tag的版本号
REF_COMMIT
:
'
18.
5
'
# 更新的时候改这里,修改成上一个tag的版本号
script
:
-
apt update;apt -y install wget
-
currentPath=$PWD
...
...
BPRO.cdb
View file @
a2da18ae
No preview for this file type
etc.cdb
View file @
a2da18ae
No preview for this file type
pack/2025-10-25 BPRO.ydk
View file @
a2da18ae
...
...
@@ -9,6 +9,7 @@
101303018
101303019
101303028
101303029
101303031
101303204
101303033
...
...
pics/101303029.jpg
0 → 100644
View file @
a2da18ae
106 KB
script/c101303029.lua
View file @
a2da18ae
--
--
WAKE CUP! アル
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--spsummon
...
...
@@ -23,7 +23,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e2
)
--special summon
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e3
:
SetDescription
(
aux
.
Stringid
(
id
,
2
))
e3
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
...
...
@@ -36,7 +36,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
s
.
dfilter
(
c
)
return
c
:
IsType
(
TYPE_FLIP
)
return
c
:
IsType
(
TYPE_FLIP
)
and
c
:
IsDiscardable
(
REASON_EFFECT
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
...
...
@@ -47,13 +47,8 @@ function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
s
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
ec
=
aux
.
ExceptThisCard
(
e
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
dfilter
,
tp
,
LOCATION_HAND
,
0
,
ec
)
if
#
g
==
0
and
ec
then
g
:
AddCard
(
ec
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DISCARD
)
local
tc
=
g
:
Select
(
tp
,
1
,
1
,
nil
):
GetFirst
(
)
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
dfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
aux
.
ExceptThisCard
(
e
)
)
if
tc
and
Duel
.
SendtoGrave
(
tc
,
REASON_EFFECT
+
REASON_DISCARD
)
>
0
and
c
:
IsRelateToChain
()
then
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP_ATTACK
+
POS_FACEDOWN_DEFENSE
)
end
...
...
@@ -76,6 +71,7 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
tgfilter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
ct
,
nil
)
if
g
:
GetCount
()
>
0
then
Duel
.
HintSelection
(
g
)
Duel
.
SendtoGrave
(
g
,
REASON_EFFECT
)
end
end
...
...
@@ -97,4 +93,4 @@ function s.spop2(e,tp,eg,ep,ev,re,r,rp)
if
tc
:
IsRelateToChain
()
and
aux
.
NecroValleyFilter
()(
tc
)
then
Duel
.
SpecialSummon
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEDOWN_DEFENSE
)
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