feat: added ability to handle sp variant

This commit is contained in:
Haoyu Xu
2025-08-03 13:09:24 +08:00
parent 2690eee3b9
commit 53e6ca4c71
11 changed files with 107 additions and 46 deletions

View File

@@ -39,6 +39,10 @@ module:
title:
zh-CN: '明日方舟:'
en-US: 'Arknights: '
sp_filename_prefix: sp_
sp_title:
zh-CN: '「SP」 '
en-US: '[SP] '
project_json:
project_json: project.json
preview_jpg: preview.jpg

View File

@@ -1,3 +1,8 @@
export type TitleLanguages = {
'zh-CN': string
'en-US': string
}
export type Config = {
site_id: string
total_size: number
@@ -44,10 +49,9 @@ export type Config = {
Texture2D: string
character_table_json: string
skin_table_json: string
title: {
'zh-CN': string
'en-US': string
}
title: TitleLanguages
sp_filename_prefix: string
sp_title: TitleLanguages
}
project_json: {
project_json: string