Browse Source

Merge branch 'master' of github.com:Mapaler/PADDashFormation

tags/v21.5
枫谷剑仙 4 years ago
parent
commit
9540489f65
19 changed files with 18 additions and 17 deletions
  1. +1
    -0
      .gitignore
  2. BIN
      images/cards_ja/CARDS_084.PNG
  3. BIN
      images/cards_ja/CARDS_085.PNG
  4. +1
    -1
      monsters-info/ckey.json
  5. +1
    -1
      monsters-info/custom/chs.json
  6. +1
    -1
      monsters-info/custom/cht.json
  7. +1
    -1
      monsters-info/mon_en.json
  8. +1
    -1
      monsters-info/mon_ja.json
  9. +1
    -1
      monsters-info/mon_ko.json
  10. +1
    -1
      monsters-info/official-API/en-card.json
  11. +1
    -1
      monsters-info/official-API/en-skill.json
  12. +1
    -1
      monsters-info/official-API/ja-card.json
  13. +1
    -1
      monsters-info/official-API/ja-skill.json
  14. +1
    -1
      monsters-info/official-API/ko-skill.json
  15. +1
    -1
      monsters-info/skill_en.json
  16. +1
    -1
      monsters-info/skill_ja.json
  17. +1
    -1
      monsters-info/skill_ko.json
  18. +2
    -2
      script-universal_function.js
  19. +1
    -1
      script.js

+ 1
- 0
.gitignore View File

@@ -11,3 +11,4 @@
/fonts/.font-spider
/images/*.fw.png
/monsters-info/package-lock.json
/monsters-info/official-API/*-player-data-*.json

BIN
images/cards_ja/CARDS_084.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 389 kB Width: 1024  |  Height: 1024  |  Size: 686 kB

BIN
images/cards_ja/CARDS_085.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 48 kB Width: 1024  |  Height: 1024  |  Size: 88 kB

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

@@ -1 +1 @@
[{"code":"ja","ckey":{"card":"6eccaf48a81812b00745b45595d04247","skill":"b6accb9055bae3c3dd7a4590244227df"},"updateTime":1643387670679},{"code":"en","ckey":{"card":"6f2da38337ae55e26de806b5955bdbdf","skill":"35e1d4111c0abb91e725e143179f247f"},"updateTime":1643386967111},{"code":"ko","ckey":{"card":"56ff57a4cb28b33c843eef12a99e04d4","skill":"55e4d0b7d515f57090dd76a23c917c1e"},"updateTime":1643386967111}]
[{"code":"ja","ckey":{"card":"8fab10410029f684ff9620f0c8260ec5","skill":"8f6a2c5adba524673b736b16c6863c4b"},"updateTime":1644158615540},{"code":"en","ckey":{"card":"d26b1dda29417791debc29d386940f02","skill":"ff076b4e7cbb222e365df5a0b3086291"},"updateTime":1644158615540},{"code":"ko","ckey":{"card":"bdb3e3662fd4f454928f8b97004bda1c","skill":"342e20f2a967f9bb39aacdd6d48acc06"},"updateTime":1644158615540}]

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


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


+ 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-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


+ 2
- 2
script-universal_function.js View File

@@ -1020,8 +1020,8 @@ function countTeamHp(memberArr, leader1id, leader2id, solo, noAwoken = false) {
}
break;
}
case 217:{ //队员为指定类型,不包括双方队长,且队员数大于0
let cardsArr = memberArr.filter(m => m.id > 0).map(m => Cards[m.id]); //所有的卡片
case 217:{ //限定队伍星级,不包括好友队长
let cardsArr = memberArr.slice(0, 5).filter(m => m.id > 0).map(m => Cards[m.id]); //所有的卡片
const rarityCount = cardsArr.reduce((pre,member)=>{
const card = Cards[member.id] || Cards[0];
return pre + card.rarity;


+ 1
- 1
script.js View File

@@ -4606,7 +4606,7 @@ function refreshTeamTotalHP(totalDom, team, teamIdx) {
if (tRarityDom)
{
const rarityDoms = tRarityDom.querySelector(".rarity");
const rarityCount = team_2p.reduce((pre,member)=>{
const rarityCount = team[0].slice(0,5).reduce((pre,member)=>{
if (member.id <= 0) return pre;
const card = Cards[member.id] || Cards[0];
return pre + card.rarity;


Loading…
Cancel
Save