diff --git a/README.md b/README.md index f82b99d..e046899 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ A project that builds showcase webpage for Arknights Live2D-equipped operators. Version: `4th Anniversary` -- [ ] Operator: Silence the Paradiagmatic (unsure) - [ ] Operator: Muelsyse - [ ] Skin: Born as One / Specter the Unchained - [ ] Skin: Ten Thousand Mountains / Ch'en/Chen the Holungday diff --git a/config.yaml b/config.yaml index a46155a..85db34c 100644 --- a/config.yaml +++ b/config.yaml @@ -53,4 +53,8 @@ operators: mizuki_summer_feast: !include config/mizuki_summer_feast.yaml chongyue: !include config/chongyue.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 \ No newline at end of file + 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 \ No newline at end of file diff --git a/config/chen_ten_thousand_mountains.yaml b/config/chen_ten_thousand_mountains.yaml new file mode 100644 index 0000000..af6e1e6 --- /dev/null +++ b/config/chen_ten_thousand_mountains.yaml @@ -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 \ No newline at end of file diff --git a/config/kaltsit_remnant.yaml b/config/kaltsit_remnant.yaml new file mode 100644 index 0000000..26584dd --- /dev/null +++ b/config/kaltsit_remnant.yaml @@ -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 diff --git a/config/muelsyse.yaml b/config/muelsyse.yaml new file mode 100644 index 0000000..72a2c02 --- /dev/null +++ b/config/muelsyse.yaml @@ -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 diff --git a/config/specter_born_as_one.yaml b/config/specter_born_as_one.yaml new file mode 100644 index 0000000..c81a65d --- /dev/null +++ b/config/specter_born_as_one.yaml @@ -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 diff --git a/libs/initializer.js b/libs/initializer.js index 7eb3b10..8976ad4 100644 --- a/libs/initializer.js +++ b/libs/initializer.js @@ -11,7 +11,6 @@ export default function init(operatorName, extractedDir) { }) const date = new Date() const template = readYAML(path.join(__projectRoot, 'config', '_template.yaml')) - template.link = operatorName template.date = `${date.getFullYear()}/${(date.getMonth() + 1).toString().padStart(2, '0') }` writeSync(stringify(template), path.join(__projectRoot, 'config', `${operatorName}.yaml`)) appendMainConfig(operatorName)