Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
39 lines
932 B
TypeScript
39 lines
932 B
TypeScript
export const orderTypeData: Record<number, string> = {
|
|
1: '普通订单',
|
|
2: '额外订单(弃用)',
|
|
3: '超级订单',
|
|
4: '预热订单',
|
|
5: '触发订单',
|
|
6: '退役发射器清理订单',
|
|
7: '清理无法生成订单的棋子',
|
|
8: '棋盘空格不足清理棋子的订单',
|
|
9: '安慰订单',
|
|
10: '引导订单',
|
|
11: '消耗品订单',
|
|
12: '预览订单',
|
|
13: '预设订单',
|
|
14: '装饰物订单',
|
|
15: '零件订单',
|
|
};
|
|
|
|
export const orderDiffData: Record<number, string> = {
|
|
0:'预设',
|
|
1: '低难度',
|
|
2: '中难度',
|
|
3: '高难度',
|
|
};
|
|
|
|
export const triggerTypeData: Record<string, string> = {
|
|
'Order': '订单触发器',
|
|
'Lv': '等级触发器',
|
|
};
|
|
|
|
export const activityTypeData: Record<number, string> = {
|
|
1: '挖矿活动',
|
|
2: '猜颜色',
|
|
3: '赛跑活动',
|
|
4: '限时特惠礼包',
|
|
5: '买一赠一礼包',
|
|
6: '超值加购礼包',
|
|
7: '好友合作活动',
|
|
}; |