Browse Source

Merge branch 'master' of gitee.com:mapaler/PADDashFormation

tags/v9.0
枫谷剑仙 5 years ago
parent
commit
b67e0a1ebc
19 changed files with 13 additions and 21 deletions
  1. BIN
      images/cards_en/CARDS_065.PNG
  2. BIN
      images/cards_en/CARDS_066.PNG
  3. BIN
      images/cards_en/CARDS_068.PNG
  4. BIN
      images/cards_en/CARDS_069.PNG
  5. BIN
      images/cards_ko/CARDS_065.PNG
  6. BIN
      images/cards_ko/CARDS_066.PNG
  7. BIN
      images/cards_ko/CARDS_068.PNG
  8. BIN
      images/cards_ko/CARDS_069.PNG
  9. +1
    -1
      monsters-info/ckey.json
  10. +1
    -1
      monsters-info/mon_en.json
  11. +1
    -1
      monsters-info/mon_ja.json
  12. +1
    -1
      monsters-info/mon_ko.json
  13. +1
    -1
      monsters-info/official-API/en-card.json
  14. +1
    -1
      monsters-info/official-API/en-skill.json
  15. +1
    -1
      monsters-info/official-API/ko-card.json
  16. +1
    -1
      monsters-info/official-API/ko-skill.json
  17. +1
    -1
      monsters-info/skill_en.json
  18. +1
    -1
      monsters-info/skill_ko.json
  19. +3
    -11
      script-universal_function.js

BIN
images/cards_en/CARDS_065.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 935 kB Width: 1024  |  Height: 1024  |  Size: 973 kB

BIN
images/cards_en/CARDS_066.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 413 kB Width: 1024  |  Height: 1024  |  Size: 424 kB

BIN
images/cards_en/CARDS_068.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 94 kB

BIN
images/cards_en/CARDS_069.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 100 kB

BIN
images/cards_ko/CARDS_065.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 935 kB Width: 1024  |  Height: 1024  |  Size: 973 kB

BIN
images/cards_ko/CARDS_066.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 439 kB Width: 1024  |  Height: 1024  |  Size: 452 kB

BIN
images/cards_ko/CARDS_068.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 94 kB

BIN
images/cards_ko/CARDS_069.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 105 kB

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

@@ -1 +1 @@
[{"code":"ja","ckey":{"card":"271cc65f3273c767feb0c0330197e499","skill":"6a9c3bfe493bb6a25e4baa4f4ebdab33"},"updateTime":1607973033948},{"code":"en","ckey":{"card":"cb867f09cd557597d1c1a9caa12c98f9","skill":"40b9acf5827237c5c4a450bd8289c4f9"},"updateTime":1607973033948},{"code":"ko","ckey":{"card":"2147468c23a860987c70a59935ceef23","skill":"908399019cc34e9a73b5344855093243"},"updateTime":1607973033948}]
[{"code":"ja","ckey":{"card":"655dda55acd9be4cda56277f7e17db4c","skill":"6a9c3bfe493bb6a25e4baa4f4ebdab33"},"updateTime":1608137927030},{"code":"en","ckey":{"card":"a3de1dd93c2be23a77bb2dc6e0ad2684","skill":"1cfc69c93eed2ce73d642f98e288c384"},"updateTime":1608137927030},{"code":"ko","ckey":{"card":"67d7c1a0e729a551fc91a6aa6c909a32","skill":"2bdc800988b3a67aa792b69e1dac30d6"},"updateTime":1608137927030}]

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


+ 3
- 11
script-universal_function.js View File

@@ -256,9 +256,9 @@ function calculateAbility(member, assist = null, solo = true, teamsCount = 1)
[{index:3,value:200},{index:67,value:-2000}] //RCV
];
const previousAwokenScale = [ //在297之前,对应比例加三维觉醒的序号与倍率值,就是语音觉醒
[], //HP
[], //ATK
[] //RCV
[{index:63,scale:1.1}], //HP
[{index:63,scale:1.1}], //ATK
[{index:63,scale:1.1}] //RCV
];
const latterAwokenScale = [ //对应比例加三维觉醒的序号与倍率值
[], //HP
@@ -266,14 +266,6 @@ function calculateAbility(member, assist = null, solo = true, teamsCount = 1)
[] //RCV
];
if (currentDataSource.code=="ja")
{
//63 语音觉醒
previousAwokenScale.forEach(ab=>{
ab.push({index:63,scale:1.1});
});
}
if (!solo)
{ //协力时计算协力觉醒
latterAwokenScale.forEach(ab=>{


Loading…
Cancel
Save