Files
ZYZ/shared/pubUtils/dictionary/DicGachaContent.ts
T
2021-04-21 21:10:26 +08:00

24 lines
637 B
TypeScript

import { readJsonFile, parseNumberList } from '../util'
import { FILENAME } from '../../consts'
export interface DicGachaContent {
// 内容id
readonly id: number;
// 道具类型 见sysConst 中的 GACHA_CONTENT_TYPE
readonly type: number;
// 对应参数 品质,等级,物品id 等
readonly param: number[];
// 道具数量
readonly count: number;
}
const str = readJsonFile(FILENAME.DIC_GACHA_CONTENT);
let arr = JSON.parse(str);
export const dicGachaContent = new Map<number, DicGachaContent>();
arr.forEach(o => {
o.param = parseNumberList(o.param);
dicGachaContent.set(o.id, o);
});