🚸 改进不同类型活动卡片处理

This commit is contained in:
BTMuli
2025-09-09 12:53:47 +08:00
parent fe5a5011eb
commit 94ae39337b
3 changed files with 104 additions and 6 deletions

View File

@@ -40,3 +40,17 @@ export function getGameServerDesc(server: TGApp.Game.Base.ServerTypeEnum): strin
return "国际服-港澳台服";
}
}
/**
* @description 近期活动活动类型枚举
* @since Beta v0.8.0
* @enum ActCalendarTypeEnum
*/
export const ActCalendarTypeEnum: typeof TGApp.Game.ActCalendar.ActType = {
HardChallenge: "ActTypeHardChallenge",
RoleCombat: "ActTypeRoleCombat",
Tower: "ActTypeTower",
Double: "ActTypeDouble",
Explore: "ActTypeExplore",
Other: "ActTypeOther",
};