mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-03-26 05:39:45 +08:00
🍱 增加千星奇域元数据
This commit is contained in:
@@ -1,25 +1,29 @@
|
||||
/**
|
||||
* @file enum/game.ts
|
||||
* @description 游戏相关枚举
|
||||
* 游戏相关枚举
|
||||
* @since Beta v0.8.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @description 服务器类型
|
||||
* 服务器类型
|
||||
* @since Beta v0.8.0
|
||||
* @const GameServerEnum
|
||||
*/
|
||||
export const GameServerEnum: typeof TGApp.Game.Base.ServerType = {
|
||||
/** 国服-官方服 */
|
||||
CN_GF01: "cn_gf01",
|
||||
/** 国服-渠道服 */
|
||||
CN_QD01: "cn_qd01",
|
||||
/** 国际服-美服 */
|
||||
OS_USA: "os_usa",
|
||||
/** 国际服-欧服 */
|
||||
OS_EURO: "os_euro",
|
||||
/** 国际服-亚服 */
|
||||
OS_ASIA: "os_asia",
|
||||
/** 国际服-港澳台服 */
|
||||
OS_CHT: "os_cht",
|
||||
};
|
||||
|
||||
/**
|
||||
* @description 获取公告服务器描述
|
||||
* 获取公告服务器描述
|
||||
* @since Beta v0.8.0
|
||||
* @param {TGApp.Game.Base.ServerTypeEnum} server 公告服务器
|
||||
* @return {string} 公告服务器描述
|
||||
@@ -42,15 +46,20 @@ export function getGameServerDesc(server: TGApp.Game.Base.ServerTypeEnum): strin
|
||||
}
|
||||
|
||||
/**
|
||||
* @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",
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user