diff --git a/images/cards_ja/CARDS_062.PNG b/images/cards_ja/CARDS_062.PNG index ca20f3aa..0f3ae9a6 100644 Binary files a/images/cards_ja/CARDS_062.PNG and b/images/cards_ja/CARDS_062.PNG differ diff --git a/images/cards_ja/CARDS_065.PNG b/images/cards_ja/CARDS_065.PNG index 80678168..e526a9fd 100644 Binary files a/images/cards_ja/CARDS_065.PNG and b/images/cards_ja/CARDS_065.PNG differ diff --git a/images/cards_ja/CARDS_066.PNG b/images/cards_ja/CARDS_066.PNG index dfa332fd..c9699907 100644 Binary files a/images/cards_ja/CARDS_066.PNG and b/images/cards_ja/CARDS_066.PNG differ diff --git a/languages/en.css b/languages/en.css index 6632cb1c..2fa9aa89 100644 --- a/languages/en.css +++ b/languages/en.css @@ -68,9 +68,6 @@ .monsterinfo-box .monster-id::before{ content: "No."; } -.monsterinfo-box .monster-cost::before{ - content: "COST:"; -} .monsterinfo-box .monster-seriesId::before{ content: "Series ID:"; } @@ -116,6 +113,9 @@ { content: "Lv."; } +.edit-box .setting-box .monster-cost::before{ + content: "COST:"; +} .edit-box .setting-box .row-mon-latent::before{ content: "▼Latent Awoken"; } diff --git a/languages/ja.css b/languages/ja.css index 23d47b03..09821ff5 100644 --- a/languages/ja.css +++ b/languages/ja.css @@ -67,9 +67,6 @@ .monsterinfo-box .monster-id::before{ content: "No."; } -.monsterinfo-box .monster-cost::before{ - content: "コスト:"; -} .monsterinfo-box .monster-seriesId::before{ content: "シリーズ ID:"; } @@ -115,6 +112,9 @@ { content: "Lv."; } +.edit-box .setting-box .monster-cost::before{ + content: "コスト:"; +} .edit-box .setting-box .row-mon-latent::before{ content: "▼モンスター潜在覚醒"; } diff --git a/languages/ko.css b/languages/ko.css index 21bbe799..90be73aa 100644 --- a/languages/ko.css +++ b/languages/ko.css @@ -67,9 +67,6 @@ .monsterinfo-box .monster-id::before{ content: "No."; } -.monsterinfo-box .monster-cost::before{ - content: "코스트:"; -} .monsterinfo-box .monster-seriesId::before{ content: "시리즈 ID:"; } @@ -115,6 +112,9 @@ { content: "Lv."; } +.edit-box .setting-box .monster-cost::before{ + content: "코스트:"; +} .edit-box .setting-box .row-mon-latent::before{ content: "▼몬스터 숨어있는"; } diff --git a/languages/zh-TW.css b/languages/zh-TW.css index 2848777b..8a098819 100644 --- a/languages/zh-TW.css +++ b/languages/zh-TW.css @@ -70,9 +70,6 @@ .monsterinfo-box .monster-id::before{ content: "No."; } -.monsterinfo-box .monster-cost::before{ - content: "消耗:"; -} .monsterinfo-box .monster-seriesId::before{ content: "系列ID:"; } @@ -118,6 +115,9 @@ { content: "Lv."; } +.edit-box .setting-box .monster-cost::before{ + content: "消耗:"; +} .edit-box .setting-box .row-mon-latent::before{ content: "▼潛在覺醒"; } diff --git a/languages/zh.css b/languages/zh.css index 3eafaf3e..bce1a915 100644 --- a/languages/zh.css +++ b/languages/zh.css @@ -70,9 +70,6 @@ .monsterinfo-box .monster-id::before{ content: "No."; } -.monsterinfo-box .monster-cost::before{ - content: "消耗:"; -} .monsterinfo-box .monster-seriesId::before{ content: "系列ID:"; } @@ -118,6 +115,9 @@ { content: "Lv."; } +.edit-box .setting-box .monster-cost::before{ + content: "消耗:"; +} .edit-box .setting-box .row-mon-latent::before{ content: "▼潜在觉醒"; } diff --git a/script.js b/script.js index 0528a096..cac984da 100644 --- a/script.js +++ b/script.js @@ -1873,10 +1873,6 @@ function editBoxChangeMonId(id) { mId.innerHTML = id; const mRare = monInfoBox.querySelector(".monster-rare"); mRare.setAttribute("data-rarity", card.rarity); - const mCost = monInfoBox.querySelector(".monster-cost"); - mCost.innerHTML = card.cost; - /*const mExp = monInfoBox.querySelector(".monster-exp"); - mExp.innerHTML = card.exp.max;*/ const mName = monInfoBox.querySelector(".monster-name"); mName.innerHTML = returnMonsterNameArr(card, currentLanguage.searchlist, currentDataSource.code)[0]; const mSeriesId = monInfoBox.querySelector(".monster-seriesId"); @@ -1985,6 +1981,9 @@ function editBoxChangeMonId(id) { } else { monEditLv110.classList.add(className_displayNone); } + const mCost = settingBox.querySelector(".monster-cost"); + mCost.innerHTML = card.cost; + const rowPlus = settingBox.querySelector(".row-mon-plus"); const rowLatent = settingBox.querySelector(".row-mon-latent"); const monLatentAllowUl = rowLatent.querySelector(".m-latent-allowable-ul"); diff --git a/solo.html b/solo.html index 2cadd746..1b10a5a0 100644 --- a/solo.html +++ b/solo.html @@ -629,7 +629,6 @@ var formation = new Formation(teamsCount,6);
-
@@ -709,6 +708,7 @@ var formation = new Formation(teamsCount,6);
+
~ diff --git a/style.css b/style.css index f318345e..4be71e1d 100644 --- a/style.css +++ b/style.css @@ -1317,7 +1317,8 @@ ul{ .row-mon-ability ul, .row-mon-plus ul, -.row-mon-level .level-value +.row-mon-level .level-value, +.row-mon-level .monster-cost { font-family: var(--game-font-family ); font-size: 22px;