Browse Source

修复没有正确识别8潜觉的问题

tags/v8.0
枫谷剑仙 6 years ago
parent
commit
2fb02f1e5f
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      monsters-info/mon_en.json
  2. +1
    -1
      monsters-info/mon_ja.json
  3. +1
    -1
      monsters-info/mon_ko.json
  4. +1
    -1
      monsters-info/official-API/parseCard.js

+ 1
- 1
monsters-info/mon_en.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/mon_ja.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/mon_ko.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/parseCard.js View File

@@ -73,7 +73,7 @@ class Card{
card.overlay = card.types.some(t => { //这步还是猜测,是否能合并
return t == 0 || t == 12 || t == 14; //0進化用;12能力覺醒用;14強化合成用;15販賣用
}) && (flags & parseInt("1000",2)) === 0; //進化用、能力覺醒用、強化合成用,且flag有1000时
card.is8Latent = (flags & parseInt("10000",2)) !== 0; //是否支持8个潜觉
card.is8Latent = (flags & parseInt("100000",2)) !== 0; //是否支持8个潜觉
card.altName = data[i++]; //替换名字
card.limitBreakIncr = data[i++]; //110级增长
card.unk09 = data[i++]; //未知09


Loading…
Cancel
Save