feat(gvg): 添加策划表解析

This commit is contained in:
luying
2023-01-30 10:21:36 +08:00
parent 2a2922dc03
commit 3a71d7da97
13 changed files with 188 additions and 59 deletions

View File

@@ -5,15 +5,15 @@ import { parseGoodStr, readFileAndParse } from '../util'
export interface DicGVGContributeBox {
// 唯一id
id: number;
readonly id: number;
// 职能 1-贤臣 2-猛将
job: number;
readonly job: number;
// 所需积分点
boxPoint: number;
readonly boxPoint: number;
// 奖励,普通背包物品
boxReward: RewardInter[];
readonly boxReward: RewardInter[];
// 奖励,联军相关道具物品
boxLeagueReward: RewardInter[];
readonly boxLeagueReward: RewardInter[];
}
export const dicGVGContributeBox = new Map<number, DicGVGContributeBox>();