装备:淬火修改读取表

This commit is contained in:
luying
2021-07-30 17:17:32 +08:00
parent 6ab6a381e2
commit 36cdba3a7b
8 changed files with 42 additions and 59 deletions
+4 -1
View File
@@ -17,6 +17,8 @@ export interface DicGoods {
readonly name: string;
// 等级限制
readonly lvLimited: number;
// 星级
readonly equipLvl: number;
// 职业限制
readonly jobLimited: number;
// 武将限制
@@ -103,7 +105,8 @@ const DicGoodsKeys: KeysEnum<DicGoods> = {
image_id: true,
gift: true,
jobLimited: true,
charLimited: true
charLimited: true,
equipLvl: true
}
export const dicJewel = new Map<number, DicGoods>();
export const dicGoods = new Map<number, DicGoods>();