🍱 增加衣装相关资源

#190
This commit is contained in:
BTMuli
2025-12-31 01:00:11 +08:00
parent 25a813d3f7
commit e06b96dcd9
74 changed files with 1154 additions and 123 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,12 @@
/**
* 角色相关类型定义文件
* @since Beta v0.9.0
* @since Beta v0.9.1
*/
declare namespace TGApp.App.Character {
/**
* Wiki 页简略信息
* @since Beta v0.9.0
* @since Beta v0.9.1
*/
type WikiBriefInfo = {
/** 角色 ID */
@@ -34,6 +34,23 @@ declare namespace TGApp.App.Character {
weapon: string;
/** 角色名片 */
nameCard: string;
/** 衣装信息 */
costumes: Array<Costume>;
};
/**
* 衣装信息
* @since Beta v.0.9.1
*/
type Costume = {
/** ID */
id: number;
/** 是否是默认服装 */
isDefault: boolean;
/** 名称 */
name: string;
/** 描述 */
desc: string;
};
/**