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
Crescent/毛虫
pre-release-database-cdb
Commits
0e1422a5
Commit
0e1422a5
authored
Aug 05, 2024
by
Crescent/毛虫
Browse files
Options
Browse Files
Download
Plain Diff
clean repository
parents
c47f63eb
43d00873
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
309 deletions
+0
-309
.gitlab-ci.yml
.gitlab-ci.yml
+0
-238
ROTA.cdb
ROTA.cdb
+0
-0
script/c101206014.lua
script/c101206014.lua
+0
-71
No files found.
.gitlab-ci.yml
deleted
100644 → 0
View file @
c47f63eb
stages
:
-
prepare
-
prepare2
-
pack
-
deploy
variables
:
GIT_DEPTH
:
"
1"
# redtext:
# stage: pack
# dependencies: []
# tags:
# - linux
# image: git-registry.mycard.moe/nanahira/srvpro:lite
# variables:
# DATABASE_FILE: expansions/test-release.cdb
# script:
# - apt update && apt -y install sqlite3
# - mv /ygopro-server/ygopro .
# - mkdir dist
# - cd ygopro
# - mkdir -p expansions
# - mv ../script expansions/
# - mv ../*.cdb expansions
# - echo "# Result of redtext test of commit $CI_COMMIT_SHA"
# - echo "select id from datas where type != 0x10 and (type & 0x4000) = 0;" | sqlite3 $DATABASE_FILE | xargs -I {} ./ygopro {} 2>&1 | tee ../dist/redtext.txt
# - cd ..
# - exit $(cat dist/redtext.txt | wc -l)
merge_databases
:
stage
:
prepare
dependencies
:
[]
tags
:
-
linux
script
:
-
apt update && apt -y install sqlite3
-
ls -1 *.cdb | sed -e '/test-update.cdb/d' -e '/script-fix.cdb/d' | xargs -I '{}' sqlite3 '{}' .dump | sqlite3 test-release.cdb ||
true
artifacts
:
paths
:
-
test-release.cdb
.json
:
stage
:
prepare2
dependencies
:
-
merge_databases
tags
:
-
linux
image
:
git-registry.mycard.moe/mycard/ygopro-cdb-descgen:master-x86
variables
:
YGOPRO_PIC_URL_PREFIX
:
'
https://cdn02.moecube.com:444/ygopro-super-pre/data/pics/'
YGOPRO_PIC_URL_SUFFIX
:
'
.jpg'
FIELDS
:
'
name,desc,overallString,picUrl'
GIT_DEPTH
:
'
1000'
OUTPUT_FILENAME
:
test-release.json
REF_COMMIT
:
'
5.24'
# 更新的时候改这里,修改成上一个tag的版本号
script
:
-
apt update;apt -y install wget
-
currentPath=$PWD
-
cd /usr/src/app
-
wget -O strings.conf https://code.mycard.moe/mycard/ygopro-database/-/raw/master/locales/zh-CN/strings.conf
-
env GIT_PATH=$currentPath node dist $currentPath/test-release.cdb ./strings.conf $currentPath/test-strings.conf > $currentPath/$OUTPUT_FILENAME
-
cd $currentPath
artifacts
:
paths
:
-
test-release.json
json
:
extends
:
.json
json2
:
extends
:
.json
variables
:
FIELDS
:
'
id,name,desc,overallString,picUrl,createTime,createCommit,updateTime,updateCommit,created,updated'
OUTPUT_FILENAME
:
test-release-v2.json
artifacts
:
paths
:
-
test-release-v2.json
neos
:
stage
:
pack
dependencies
:
-
merge_databases
tags
:
-
linux
script
:
-
apt update && apt -y install sqlite3
-
mkdir neos
-
sqlite3 test-release.cdb .dump >> ygopro-super-pre-neos.sql
-
sqlite3 test-update.cdb .dump >> ygopro-super-pre-neos.sql
-
wget -O cards.cdb https://code.mycard.moe/mycard/ygopro-database/-/raw/master/locales/zh-CN/cards.cdb
-
sqlite3 cards.cdb .dump >> ygopro-super-pre-neos.sql
-
cat ygopro-super-pre-neos.sql | sqlite3 neos/ygopro-super-pre-neos.cdb ||
true
artifacts
:
paths
:
-
neos
pack
:
stage
:
pack
dependencies
:
-
merge_databases
-
json
-
json2
tags
:
-
linux
script
:
-
mkdir -p data archive
-
mv test-release.cdb data/
-
mv test-update.cdb data/
-
mv pics data/
-
mv script data/
-
mv *.conf data/
-
mv pack data/
-
mv *.ini data/
-
mv test-release.json data/
-
mv test-release-v2.json data/
-
git show -s --format=%ct $CI_COMMIT_SHA > data/version.txt
-
cd data
-
7z a -mx9 ../archive/ygopro-super-pre.zip pics script pack *.cdb *.conf *.ini
-
cd ..
-
mv archive/ygopro-super-pre.zip archive/ygopro-super-pre.ypk
-
cp archive/ygopro-super-pre.ypk archive/ygopro-super-pre-$CI_COMMIT_REF_NAME.ypk
artifacts
:
paths
:
-
data
-
archive
server
:
stage
:
pack
dependencies
:
-
merge_databases
tags
:
-
linux
script
:
-
mkdir server-dist
-
mv test-release.cdb server-dist
-
mv test-update.cdb server-dist
-
mv *.conf server-dist
-
mv script server-dist
# merge ygopro-pre-data
# - git clone --depth=1 https://code.mycard.moe/mycard/ygopro-pre-data
# - mv ygopro-pre-data/expansions/* server-dist/
# - mv ygopro-pre-data/script/* server-dist/script/
artifacts
:
paths
:
-
server-dist
.minio
:
stage
:
deploy
dependencies
:
-
pack
tags
:
-
linux
script
:
-
aws s3 --endpoint=https://minio.mycard.moe:9000 sync $uploadDir/ s3://mycard/ygopro-super-pre/$uploadDir
upload_archive
:
extends
:
.minio
variables
:
uploadDir
:
archive
only
:
-
tags
upload_data
:
extends
:
.minio
variables
:
uploadDir
:
data
only
:
-
tags
upload_neos
:
extends
:
.minio
variables
:
uploadDir
:
neos
dependencies
:
-
neos
only
:
-
master
upload_version_json
:
extends
:
.minio
script
:
-
aws s3 --endpoint=https://minio.mycard.moe:9000 cp data/version.txt s3://mycard/ygopro-super-pre/versions/$CI_COMMIT_REF_NAME/version.txt
-
aws s3 --endpoint=https://minio.mycard.moe:9000 cp data/test-release.json s3://mycard/ygopro-super-pre/versions/$CI_COMMIT_REF_NAME/test-release.json
-
aws s3 --endpoint=https://minio.mycard.moe:9000 cp data/test-release-v2.json s3://mycard/ygopro-super-pre/versions/$CI_COMMIT_REF_NAME/test-release-v2.json
deploy
:
stage
:
deploy
dependencies
:
-
pack
tags
:
-
linux
variables
:
username
:
$MYCARD_USERNAME
password
:
$MYCARD_PASSWORD
appVersion
:
$CI_COMMIT_REF_NAME
script
:
-
apt update; apt -y install tar zstd curl jq
-
git clone https://code.mycard.moe/mycard/mycard-package-script
-
cd mycard-package-script
-
./index.sh makeBuild ygopro-super-pre ../data ||
true
-
./index.sh makeBuild ygopro2-super-pre ../data ||
true
-
cd ..
only
:
# - master
-
tags
.deploy_to_server
:
stage
:
deploy
tags
:
-
linux
dependencies
:
-
server
variables
:
SERVER_PATH
:
~/ygopro-super-pre/expansions
script
:
-
apt update && apt -y install openssh-client rsync coreutils
-
mkdir -p ~/.ssh
-
chmod 700 ~/.ssh
-
ssh-keyscan $SERVER_HOST >> ~/.ssh/known_hosts
-
echo $NANAHIRA_SSH_KEY | base64 --decode > ~/.ssh/id_rsa
-
chmod 600 ~/.ssh/*
-
rsync -4cavzP --exclude=pics --delete ./server-dist/ $SERVER_USER@$SERVER_HOST:$SERVER_PATH
only
:
-
master
-
tags
deploy_to_tiramisu
:
extends
:
.deploy_to_server
variables
:
SERVER_HOST
:
tiramisu.mycard.moe
SERVER_USER
:
mycard
deploy_to_koishi
:
extends
:
.deploy_to_server
variables
:
SERVER_HOST
:
koishi.momobako.com
SERVER_USER
:
nanahira
ROTA.cdb
deleted
100644 → 0
View file @
c47f63eb
File deleted
script/c101206014.lua
deleted
100644 → 0
View file @
c47f63eb
--紅涙の魔ラクリモーサ
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--to grave
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetCategory
(
CATEGORY_TOGRAVE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e1
:
SetCountLimit
(
1
,
id
)
e1
:
SetTarget
(
s
.
tgtg
)
e1
:
SetOperation
(
s
.
tgop
)
c
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
e2
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
c
:
RegisterEffect
(
e2
)
--spsummon
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e3
:
SetCategory
(
CATEGORY_TODECK
+
CATEGORY_SPECIAL_SUMMON
)
e3
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e3
:
SetCode
(
EVENT_FREE_CHAIN
)
e3
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e3
:
SetRange
(
LOCATION_GRAVE
)
e3
:
SetHintTiming
(
0
,
TIMING_END_PHASE
)
e3
:
SetCountLimit
(
1
,
id
+
o
)
e3
:
SetCondition
(
s
.
spcon
)
e3
:
SetTarget
(
s
.
sptg
)
e3
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e3
)
end
function
s
.
tgfilter
(
c
)
return
not
c
:
IsCode
(
id
)
and
c
:
IsSetCard
(
0x1b0
)
and
c
:
IsAbleToGrave
()
end
function
s
.
tgtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
tgfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOGRAVE
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
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
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
then
Duel
.
SendtoGrave
(
g
,
REASON_EFFECT
)
end
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetTurnPlayer
()
==
1
-
tp
end
function
s
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsType
(
TYPE_LINK
)
and
c
:
IsSetCard
(
0x1b0
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
c
=
e
:
GetHandler
()
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_GRAVE
)
and
chkc
:
IsControler
(
tp
)
and
s
.
spfilter
(
chkc
,
e
,
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
spfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
e
,
tp
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
c
:
IsAbleToDeck
()
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
spfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
e
,
tp
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TODECK
,
c
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
g
,
1
,
0
,
0
)
end
function
s
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
GetFirstTarget
()
if
c
:
IsRelateToEffect
(
e
)
and
aux
.
NecroValleyFilter
()(
c
)
and
Duel
.
SendtoDeck
(
c
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
~=
0
and
c
:
IsLocation
(
LOCATION_DECK
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
tc
:
IsRelateToEffect
(
e
)
and
aux
.
NecroValleyFilter
()(
tc
)
then
Duel
.
SpecialSummon
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
\ No newline at end of file
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