剧诗页新增绘想游迹&月谕圣牌浮窗

This commit is contained in:
BTMuli
2026-02-12 21:04:22 +08:00
parent 7f815d2452
commit 435b1a81db
15 changed files with 676 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
/**
* 游戏相关枚举
* @since Beta v0.9.1
* @since Beta v0.9.6
*/
/**
@@ -136,6 +136,16 @@ function getGameAnnoLangDesc(lang: TGApp.Game.Anno.AnnoLangEnum): string {
}
}
/**
* 绘想游迹状态枚举
* @since Beta v0.9.6
*/
const CombatCharMasterStatEnum: typeof TGApp.Game.Combat.CharMasterStat = {
LOCK: 1,
UNFINISH: 2,
DONE: 3,
};
/** 游戏相关枚举 */
const gameEnum = {
actCalendarType: ActCalendarTypeEnum,
@@ -149,6 +159,9 @@ const gameEnum = {
langList: GameAnnoLangList,
langDesc: getGameAnnoLangDesc,
},
combat: {
charMasterStat: CombatCharMasterStatEnum,
},
};
export default gameEnum;