feat(稷下学宫): ff931afe4到7421822f6

This commit is contained in:
luying
2023-08-30 11:02:52 +08:00
parent 59a334d673
commit 05cbe318e9
102 changed files with 147876 additions and 715 deletions

View File

@@ -180,6 +180,7 @@ export const CURRENCY_TYPE = {
KING_EXP: 'kingExp',
VOUCHER: 'voucher',
VOUCHER_COIN: 'voucherCoin',
ROUGE_TECH: 'rougeTech',
}
const currencyArr = [
@@ -197,7 +198,8 @@ const currencyArr = [
{ "gid": 72021, "name": "天机骰子", "type": CURRENCY_TYPE.SPECIAL_DICE },
{ "gid": 72030, "name": "主公经验", "type": CURRENCY_TYPE.KING_EXP },
{ "gid": 81000, "name": "英杰券", "type": CURRENCY_TYPE.VOUCHER},
{ "gid": 81001, "name": "英杰币", "type": CURRENCY_TYPE.VOUCHER_COIN}
{ "gid": 81001, "name": "英杰币", "type": CURRENCY_TYPE.VOUCHER_COIN},
{ "gid": 40022, "name": "科技点", "type": CURRENCY_TYPE.ROUGE_TECH },
];
export const CURRENCY = new Map<number, { gid: number, name: string, type: string }>();