Browse Source

2021年10月21日

tags/v21.0
枫谷剑仙 4 years ago
parent
commit
088e548e6b
17 changed files with 20 additions and 15 deletions
  1. BIN
      images/cards_ja/CARDS_075.PNG
  2. BIN
      images/cards_ja/CARDS_079.PNG
  3. +1
    -1
      monsters-info/ckey.json
  4. +1
    -1
      monsters-info/mon_en.json
  5. +1
    -1
      monsters-info/mon_ja.json
  6. +1
    -1
      monsters-info/mon_ko.json
  7. +1
    -1
      monsters-info/official-API/en-card.json
  8. +1
    -1
      monsters-info/official-API/en-skill.json
  9. +1
    -1
      monsters-info/official-API/ja-card.json
  10. +1
    -1
      monsters-info/official-API/ja-skill.json
  11. +1
    -1
      monsters-info/official-API/ko-card.json
  12. +1
    -1
      monsters-info/official-API/ko-skill.json
  13. +1
    -1
      monsters-info/skill_en.json
  14. +1
    -1
      monsters-info/skill_ja.json
  15. +1
    -1
      monsters-info/skill_ko.json
  16. +1
    -1
      script-json_data.js
  17. +6
    -1
      script-skill-parser.js

BIN
images/cards_ja/CARDS_075.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 946 kB Width: 1024  |  Height: 1024  |  Size: 989 kB

BIN
images/cards_ja/CARDS_079.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 563 kB Width: 1024  |  Height: 1024  |  Size: 585 kB

+ 1
- 1
monsters-info/ckey.json View File

@@ -1 +1 @@
[{"code":"ja","ckey":{"card":"64d9bb335393a4e603434e36e92cb0d8","skill":"8b63713e38a2f54bfc2936c5ec9df93f"},"updateTime":1634314129244},{"code":"en","ckey":{"card":"06eb101885e3fced8d2279a5561f56dc","skill":"a7a465dafb38bf52e802b962e189600f"},"updateTime":1634293825933},{"code":"ko","ckey":{"card":"90e28965d7eb7b3e7df7f7e30152f541","skill":"fde3a39d2e71e2a1c62cc0bd9279d0e7"},"updateTime":1634293825933}]
[{"code":"ja","ckey":{"card":"e272bb34f9cdedc698fa5fbbe0e7e710","skill":"105fa55b18e33690b7559721c2d11224"},"updateTime":1634798910326},{"code":"en","ckey":{"card":"47fa848b4ea328d43a98148ccc94610d","skill":"576311cbfc2dec5d780fd7df63620225"},"updateTime":1634798910326},{"code":"ko","ckey":{"card":"94ec59fd10335cb3e2ac5589bf8c8190","skill":"b54973dbaad4d3ec0ad385d1ac3d8ded"},"updateTime":1634798910326}]

+ 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/en-card.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/en-skill.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/ja-card.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/ja-skill.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/ko-card.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/ko-skill.json
File diff suppressed because it is too large
View File


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


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


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


+ 1
- 1
script-json_data.js View File

@@ -1890,7 +1890,7 @@ const specialSearchFunctions = (function() {
str+="队长";
break;
}
case 3: {
case 8: {
str+="队员";
break;
}


+ 6
- 1
script-skill-parser.js View File

@@ -1386,11 +1386,16 @@ const parsers = {
return powerUp(null, null, p.scaleStateKindCount(null, flags(attrs), flags(types), p.mul({hp: hp, atk: atk, rcv: rcv})));
},
[230](turns, target, mul) {
/*const targetType = {
"self": Boolean(target & 1<<0),
"leader": Boolean(target & 1<<1),
"sub-monsters": Boolean(target & 1<<3),
}*/
const targetType = (target=>{
switch (target) {
case 1: return "self";
case 2: return "leader";
case 3: return "sub-monsters";
case 8: return "sub-monsters";
default: return target;
}
})(target);


Loading…
Cancel
Save