添加特技战力计算

This commit is contained in:
luying
2020-12-21 20:12:05 +08:00
parent cc71c48dd9
commit ba4f58509d
9 changed files with 194 additions and 49 deletions

View File

@@ -26,6 +26,6 @@ let arr = JSON.parse(str);
export const dicRandomEffectPool = new Map<number, DicRandomEffectPool>();
arr.forEach(o => {
o.gainValueArr = parseNumberList(o.gainvalue)
o.gainValueArr = parseNumberList(o.gainValue)
dicRandomEffectPool.set(o.id, o);
});