18 lines
599 B
TypeScript
18 lines
599 B
TypeScript
export class BaseConst {
|
|
public static readonly COMPOUND = 'compound'
|
|
public static readonly MISSION = 'mission'
|
|
public static readonly RANK_SCORE = 'r'
|
|
// 多人答题时间
|
|
public static readonly MATCH_ANSWER_TIME = 10000
|
|
// 游戏结束后房间自动解散时间
|
|
public static readonly ROOM_AUTO_CLOSE_TIME = 100000
|
|
// 第一题延后发送时间
|
|
public static readonly FIST_QUESTION_DELAY = 2000
|
|
}
|
|
|
|
// 抽奖券的物品id
|
|
export const LOTTERY_TICKET = 'lottery_ticket'
|
|
export const EMPTY = 'empty'
|
|
// 单人模式使用显示答案次数
|
|
export const SINGLE_HELP_COUNT = 999
|