2025年4月11日
This commit is contained in:
parent
467cc43d28
commit
86d97592ac
Binary file not shown.
Before Width: | Height: | Size: 572 KiB After Width: | Height: | Size: 664 KiB |
|
@ -2,25 +2,25 @@
|
|||
{
|
||||
"code": "ja",
|
||||
"ckey": {
|
||||
"card": "c44238df5f960c447631553cfb40482f",
|
||||
"skill": "ce502e4a356afe4b9afe83edb385fb52"
|
||||
"card": "870367895506f1438790e5ed60a97474",
|
||||
"skill": "9b8456d1c722fa2595a029c84af4a0c0"
|
||||
},
|
||||
"updateTime": 1743863128496
|
||||
"updateTime": 1744307723051
|
||||
},
|
||||
{
|
||||
"code": "en",
|
||||
"ckey": {
|
||||
"card": "bc70de478b3837071f2fa6c60005aa0d",
|
||||
"card": "988cc43703cad2e7829f7e7003a82d3e",
|
||||
"skill": "fd3ede23513efd9197d305489ac9921c"
|
||||
},
|
||||
"updateTime": 1743863128496
|
||||
"updateTime": 1744307723051
|
||||
},
|
||||
{
|
||||
"code": "ko",
|
||||
"ckey": {
|
||||
"card": "3dd027c2714cc1b1bac0b36ea89d5a57",
|
||||
"card": "637d404cf1f816c0aa0850a78cd2a816",
|
||||
"skill": "0d11655e059d5cffffcb0a7f0a803a0c"
|
||||
},
|
||||
"updateTime": 1743863128496
|
||||
"updateTime": 1744307723051
|
||||
}
|
||||
]
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1226,7 +1226,7 @@ const specialSearchFunctions = (function() {
|
|||
function memberATK_Addition(card)
|
||||
{
|
||||
const searchTypeArray = [230, 269];
|
||||
const skills = getCardActiveSkills(card, searchTypeArray);
|
||||
const skills = getCardActiveSkills(card, searchTypeArray, true);
|
||||
return skills.map(skill=>{
|
||||
const sk = skill.params;
|
||||
const fragment = document.createDocumentFragment();
|
||||
|
@ -1254,7 +1254,7 @@ const specialSearchFunctions = (function() {
|
|||
function memberCap_Addition(card)
|
||||
{
|
||||
const searchTypeArray = [241, 246, 247, 258, 263, 266];
|
||||
const skills = getCardActiveSkills(card, searchTypeArray);
|
||||
const skills = getCardActiveSkills(card, searchTypeArray, true);
|
||||
return skills.map(skill=>{
|
||||
const sk = skill.params;
|
||||
let cap = getIncreaseDamageCap(skill);
|
||||
|
|
|
@ -423,7 +423,7 @@ const cachesMap = new Map([
|
|||
],
|
||||
[
|
||||
"images/cards_ja/CARDS_106.PNG",
|
||||
"3c2f22091b46436e04e4523458155fcb"
|
||||
"fb0db444ee72647c3ed1123a9eadfaa9"
|
||||
],
|
||||
[
|
||||
"images/cards_ja/CARDS_107.PNG",
|
||||
|
|
29
style.css
29
style.css
|
@ -3807,13 +3807,15 @@ table .orb-icon
|
|||
content: "💣";
|
||||
}
|
||||
.team-flags .team-member-icon {
|
||||
--box-width: 10px;
|
||||
--box-height: 10px;
|
||||
display: inline-block;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-radius: 3px;
|
||||
width: 10px;
|
||||
height:10px;
|
||||
width: var(--box-width);
|
||||
height:var(--box-height);
|
||||
}
|
||||
.team-flags .team-member-icon:first-of-type,
|
||||
.team-flags .team-member-icon:last-of-type
|
||||
|
@ -3842,7 +3844,25 @@ table .orb-icon
|
|||
}
|
||||
.team-flags.right-neighbor .team-member-icon:nth-of-type(5),
|
||||
.team-flags.left-neighbor .team-member-icon:nth-of-type(3) {
|
||||
background-color: violet !important;
|
||||
background-color: violet !important;
|
||||
}
|
||||
/* 做一个箭头 */
|
||||
.team-flags.right-neighbor .team-member-icon:nth-of-type(5)::before,
|
||||
.team-flags.left-neighbor .team-member-icon:nth-of-type(3)::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
border-style: solid;
|
||||
border-width: calc(var(--box-height) / 2) calc(var(--box-width) / 2);
|
||||
border-color: transparent;
|
||||
}
|
||||
.team-flags.right-neighbor .team-member-icon:nth-of-type(3)::before {
|
||||
border-right-color: #0009;
|
||||
}
|
||||
.team-flags.right-neighbor .team-member-icon:nth-of-type(5)::before {
|
||||
border-left-color: #0009;
|
||||
}
|
||||
|
||||
/*.open-evolutionary-tree::before
|
||||
|
@ -5059,7 +5079,8 @@ body.external-link-support #external-support{
|
|||
line-height: 1.5em;
|
||||
}
|
||||
.skill-datail-parsed .team-flags {
|
||||
display: inline-block;
|
||||
display: inline-flex;
|
||||
align-items: end;
|
||||
}
|
||||
.icon-skill[data-icon-type="auto-path"]
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue