feat(assets): add base config for new skins and operators, updated available assets

This commit is contained in:
Haoyu Xu
2023-04-30 22:30:06 -04:00
parent 45730c87d4
commit 970d2b89e8
7 changed files with 57 additions and 3 deletions

View File

@@ -6,7 +6,6 @@ A project that builds showcase webpage for Arknights Live2D-equipped operators.
Version: `4th Anniversary` Version: `4th Anniversary`
- [ ] Operator: Silence the Paradiagmatic (unsure)
- [ ] Operator: Muelsyse - [ ] Operator: Muelsyse
- [ ] Skin: Born as One / Specter the Unchained - [ ] Skin: Born as One / Specter the Unchained
- [ ] Skin: Ten Thousand Mountains / Ch'en/Chen the Holungday - [ ] Skin: Ten Thousand Mountains / Ch'en/Chen the Holungday

View File

@@ -53,4 +53,8 @@ operators:
mizuki_summer_feast: !include config/mizuki_summer_feast.yaml mizuki_summer_feast: !include config/mizuki_summer_feast.yaml
chongyue: !include config/chongyue.yaml chongyue: !include config/chongyue.yaml
ling_it_does_wash_the_strings: !include config/ling_it_does_wash_the_strings.yaml ling_it_does_wash_the_strings: !include config/ling_it_does_wash_the_strings.yaml
pozemka_snowy_plains_in_words: !include config/pozemka_snowy_plains_in_words.yaml pozemka_snowy_plains_in_words: !include config/pozemka_snowy_plains_in_words.yaml
chen_ten_thousand_mountains: !include config/chen_ten_thousand_mountains.yaml
specter_born_as_one: !include config/specter_born_as_one.yaml
muelsyse: !include config/muelsyse.yaml
kaltsit_remnant: !include config/kaltsit_remnant.yaml

View File

@@ -0,0 +1,13 @@
date: 2023/04
filename: dyn_illust_char_1013_chen2_boc#6
logo: logo_rhodes_override
fallback_name: char_1013_chen2_boc#6
viewport_left: 0
viewport_right: 0
viewport_top: 0
viewport_bottom: 0
invert_filter: false
color: rgb(6, 34, 129)
codename:
zh-CN: 万重山 · 假日威龙陈
en-US: Ten Thousand Mountains / Ch'en/Chen the Holungday

View File

@@ -0,0 +1,13 @@
date: 2023/04
filename: dyn_illust_char_003_kalts_boc#6
logo: logo_rhodes_override
fallback_name: char_003_kalts_boc#6
viewport_left: 0
viewport_right: 0
viewport_top: 0
viewport_bottom: 0
invert_filter: false
color: rgb(118, 165, 185)
codename:
zh-CN: 残余 · 凯尔希
en-US: Remnant / Kal'tsit

13
config/muelsyse.yaml Normal file
View File

@@ -0,0 +1,13 @@
date: 2023/04
filename: dyn_illust_char_249_mlyss
logo: logo_rhodes_override
fallback_name: char_249_mlyss_2
viewport_left: 0
viewport_right: 0
viewport_top: 0
viewport_bottom: 0
invert_filter: false
color: rgb(118, 165, 185)
codename:
zh-CN: 缪尔赛思
en-US: Muelsyse

View File

@@ -0,0 +1,13 @@
date: 2023/04
filename: dyn_illust_char_1023_ghost2_boc#6
logo: logo_abyssal
fallback_name: char_1023_ghost2_boc#6
viewport_left: 0
viewport_right: 0
viewport_top: 0
viewport_bottom: 0
invert_filter: false
color: rgb(140, 7, 7)
codename:
zh-CN: 生而为一 · 归溟幽灵鲨
en-US: Born as One / Specter the Unchained

View File

@@ -11,7 +11,6 @@ export default function init(operatorName, extractedDir) {
}) })
const date = new Date() const date = new Date()
const template = readYAML(path.join(__projectRoot, 'config', '_template.yaml')) const template = readYAML(path.join(__projectRoot, 'config', '_template.yaml'))
template.link = operatorName
template.date = `${date.getFullYear()}/${(date.getMonth() + 1).toString().padStart(2, '0') }` template.date = `${date.getFullYear()}/${(date.getMonth() + 1).toString().padStart(2, '0') }`
writeSync(stringify(template), path.join(__projectRoot, 'config', `${operatorName}.yaml`)) writeSync(stringify(template), path.join(__projectRoot, 'config', `${operatorName}.yaml`))
appendMainConfig(operatorName) appendMainConfig(operatorName)