From fdf8b2b7f73ed83a6303939fac0c3d74c32be459 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=AB=E8=B0=B7=E5=89=91=E4=BB=99?= Date: Mon, 27 Mar 2023 20:16:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BC=A4=E5=AE=B3=E4=B8=8A?= =?UTF-8?q?=E9=99=90=C3=973=E7=9A=84=E6=BD=9C=E8=A7=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- multi.html | 3 ++- script-json_data.js | 8 +++++--- script-universal_function.js | 2 +- script.js | 2 +- solo.html | 3 ++- style-monsterimages.css | 7 +++++-- triple.html | 3 ++- 7 files changed, 18 insertions(+), 10 deletions(-) diff --git a/multi.html b/multi.html index ba63d33b..17941ce2 100644 --- a/multi.html +++ b/multi.html @@ -1261,7 +1261,8 @@ var formation = new Formation(teamsCount,5);
  • -
  • +
  • +
  • diff --git a/script-json_data.js b/script-json_data.js index 4ecc88d3..9c38abdf 100644 --- a/script-json_data.js +++ b/script-json_data.js @@ -453,7 +453,7 @@ const allowable_latent = { 28,29,30,31,32,33,34,35,36,37,38 ], killer: [16,17,18,19,20,21,22,23,24,25,26,27], //杀潜觉 - v120: [42,43,44,45], //120才能打的潜觉 + v120: [42,43,44,45,49], //120才能打的潜觉 needAwoken: [ //需要觉醒才能打的潜觉 {latent:39,awoken:62}, //C珠破吸 {latent:40,awoken:20}, //心横解转转 @@ -570,7 +570,7 @@ const pdcLatentMap = [ {pdf:40,pdc:49}, //心横解转转 ×1.5 {pdf:41,pdc:38}, //U解禁消 {pdf:41,pdc:48}, //U解禁消 ×1.5 - {pdf:42,pdc:41}, //伤害上限解除 + {pdf:42,pdc:41}, //伤害上限×2 {pdf:43,pdc:42}, //HP++ {pdf:44,pdc:43}, //攻击++ {pdf:45,pdc:44}, //回复++ @@ -580,6 +580,7 @@ const pdcLatentMap = [ {pdf:47,pdc:54}, //心L大SB ×1.5 {pdf:48,pdc:55}, //L解禁武器 {pdf:48,pdc:56}, //L解禁武器 ×1.8 + {pdf:49,paddb:57}, //伤害上限×3 ]; //paddb的徽章对应数字 const paddbBadgeMap = [ @@ -648,13 +649,14 @@ const paddbLatentMap = [ {pdf:39,paddb:41}, //C珠破吸 {pdf:40,paddb:40}, //心横解转转 {pdf:41,paddb:39}, //U解禁消 - {pdf:42,paddb:42}, //伤害上限解除 + {pdf:42,paddb:42}, //伤害上限×2 {pdf:43,paddb:43}, //HP++ {pdf:44,paddb:44}, //攻击++ {pdf:45,paddb:45}, //回复++ {pdf:46,paddb:46}, //心追解云封 {pdf:47,paddb:47}, //心L大SB {pdf:48,paddb:48}, //L解禁武器 + {pdf:49,paddb:49}, //伤害上限×3 ]; //排序程序列表 const sort_function_list = [ diff --git a/script-universal_function.js b/script-universal_function.js index 9955f9c8..0ab1b553 100644 --- a/script-universal_function.js +++ b/script-universal_function.js @@ -400,7 +400,7 @@ function latentUseHole(latentId) { } case 13: case 14: case 15: case 37: case 38: case 39: case 40: case 41: case 42: case 46: - case 47: case 48: + case 47: case 48: case 49: { return 6; } diff --git a/script.js b/script.js index ded73fa4..5debe55b 100644 --- a/script.js +++ b/script.js @@ -5158,7 +5158,7 @@ function editBoxChangeMonId(id) { .map(type => typekiller_for_type.find(t=>t.type==type).allowableLatent) .forEach(tA => tA.forEach(t => latentSet.add(t))); if (card.limitBreakIncr) { - allowable_latent.v120.forEach(t => latentSet.add(t)); + allowable_latent.v120.forEach(t => (t!==49 || t===49 && card.attrs[0]===6) && latentSet.add(t)); } return Array.from(latentSet); } diff --git a/solo.html b/solo.html index ac1dbade..c9a2bc9b 100644 --- a/solo.html +++ b/solo.html @@ -1096,7 +1096,8 @@ var formation = new Formation(teamsCount,6);
  • -
  • +
  • +
  • diff --git a/style-monsterimages.css b/style-monsterimages.css index c64866ad..23a89df9 100644 --- a/style-monsterimages.css +++ b/style-monsterimages.css @@ -1238,7 +1238,7 @@ .latent-icon[data-latent-icon='41']::before{ /*U解禁消*/ background-position-y: calc(-32px * 41); } -.latent-icon[data-latent-icon='42']::before{ /*伤害上限解除*/ +.latent-icon[data-latent-icon='42']::before{ /*伤害上限×2*/ background-position-y: calc(-32px * 42); } .latent-icon[data-latent-icon='43']::before{ /*HP++*/ @@ -1259,6 +1259,9 @@ .latent-icon[data-latent-icon='48']::before{ /*L解禁武器*/ background-position-y: calc(-32px * 48); } +.latent-icon[data-latent-icon='49']::before{ /*伤害上限×3*/ + background-position-y: calc(-32px * 49); +} :is(:lang(en), :lang(ko)) .latent-icon:where( [data-latent-icon='17'], [data-latent-icon='37'], @@ -1342,7 +1345,7 @@ background-position-x: calc(-32px * 1); background-position-y: calc(-32px * 42); } -/* 额外有 x1.5 的 6格觉醒 */ +/* 额外有 x1.8 的 6格觉醒 */ .level-super-break .latent-icon:where( [data-latent-icon='48'], )::after diff --git a/triple.html b/triple.html index 918701c4..e25e6b60 100644 --- a/triple.html +++ b/triple.html @@ -2182,7 +2182,8 @@ var formation = new Formation(teamsCount,6);
  • -
  • +
  • +