This commit is contained in:
mamengke01
2020-12-22 17:25:55 +08:00
parent eec53b688f
commit 9a377e94d8
18 changed files with 218 additions and 115 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
// 武将特技表
import { readJsonFile, parseReward } from '../util'
import { readJsonFile, parseGoodStr } from '../util'
import { FILENAME } from '../../consts'
import { RewardInter } from '../interface';
@@ -25,7 +25,7 @@ let arr = JSON.parse(str);
export const dicRefine = new Map<number, DicRefine>();
arr.forEach(o => {
o.material = parseReward(o.material)
o.material = parseGoodStr(o.material)
dicRefine.set(o.level, o);
});