diff --git a/index.html b/index.html
index 3fa39c12..caabe3c0 100644
--- a/index.html
+++ b/index.html
@@ -43,7 +43,7 @@ var formation = {
@@ -57,6 +57,7 @@ var formation = {
+
@@ -66,6 +67,7 @@ var formation = {
+
@@ -75,6 +77,7 @@ var formation = {
+
@@ -84,6 +87,7 @@ var formation = {
+
@@ -93,6 +97,7 @@ var formation = {
+
@@ -157,6 +162,7 @@ var formation = {
+
@@ -167,6 +173,7 @@ var formation = {
+
@@ -177,6 +184,7 @@ var formation = {
+
@@ -187,6 +195,7 @@ var formation = {
+
@@ -197,6 +206,7 @@ var formation = {
+
@@ -213,6 +223,7 @@ var formation = {
+
@@ -223,6 +234,7 @@ var formation = {
+
@@ -233,6 +245,7 @@ var formation = {
+
@@ -243,6 +256,7 @@ var formation = {
+
@@ -253,6 +267,7 @@ var formation = {
+
@@ -316,6 +331,7 @@ var formation = {
+
@@ -325,6 +341,7 @@ var formation = {
+
@@ -334,6 +351,7 @@ var formation = {
+
@@ -343,6 +361,7 @@ var formation = {
+
@@ -352,6 +371,7 @@ var formation = {
+
diff --git a/languages/en.css b/languages/en.css
index c97b49b4..ede1560e 100644
--- a/languages/en.css
+++ b/languages/en.css
@@ -15,6 +15,9 @@
.monster .level::before{
content: "Lv.";
}
+.monster .id::before{
+ content: "No.";
+}
.formation-A-bigbox::after{
content: "Team\A A";
}
@@ -137,4 +140,10 @@
}
.control-box .multi-link::before{
content: "Jump To 2-Player Mode";
+}
+.control-box .btn-show-mon-id::before{
+ content: "Hide monster ID";
+}
+.not-show-mon-id .control-box .btn-show-mon-id::before{
+ content: "Show monster ID";
}
\ No newline at end of file
diff --git a/languages/ja.css b/languages/ja.css
index 2edb4120..a330f8d2 100644
--- a/languages/ja.css
+++ b/languages/ja.css
@@ -14,6 +14,9 @@
.monster .level::before{
content: "Lv.";
}
+.monster .id::before{
+ content: "No.";
+}
.formation-A-bigbox::after{
content: "チーム\A A";
}
@@ -130,4 +133,10 @@
}
.control-box .multi-link::before{
content: "2人協力のゲームに移動";
+}
+.control-box .btn-show-mon-id::before{
+ content: "隠しモンスターID";
+}
+.not-show-mon-id .control-box .btn-show-mon-id::before{
+ content: "モンスターIDを表示";
}
\ No newline at end of file
diff --git a/languages/ko.css b/languages/ko.css
index 91f607fe..bd4f7098 100644
--- a/languages/ko.css
+++ b/languages/ko.css
@@ -14,6 +14,9 @@
.monster .level::before{
content: "Lv.";
}
+.monster .id::before{
+ content: "No.";
+}
.formation-A-bigbox::after{
content: "팀\A A";
}
@@ -130,4 +133,10 @@
}
.control-box .multi-link::before{
content: "2인 게임으로 이동";
+}
+.control-box .btn-show-mon-id::before{
+ content: "숨겨진 몬스터 ID";
+}
+.not-show-mon-id .control-box .btn-show-mon-id::before{
+ content: "괴물 ID 표시";
}
\ No newline at end of file
diff --git a/languages/zh-TW.css b/languages/zh-TW.css
index 4b6e2170..566ed78b 100644
--- a/languages/zh-TW.css
+++ b/languages/zh-TW.css
@@ -14,6 +14,9 @@
.monster .level::before{
content: "Lv.";
}
+.monster .id::before{
+ content: "No.";
+}
.formation-A-bigbox::after{
content: "隊伍\A A";
}
@@ -133,4 +136,10 @@
}
.control-box .multi-link::before{
content: "轉到2人車隊";
+}
+.control-box .btn-show-mon-id::before{
+ content: "隱藏怪物ID";
+}
+.not-show-mon-id .control-box .btn-show-mon-id::before{
+ content: "顯示怪物ID";
}
\ No newline at end of file
diff --git a/languages/zh.css b/languages/zh.css
index 3dec5030..98895908 100644
--- a/languages/zh.css
+++ b/languages/zh.css
@@ -14,6 +14,9 @@
.monster .level::before{
content: "Lv.";
}
+.monster .id::before{
+ content: "No.";
+}
.formation-A-bigbox::after{
content: "队伍\A A";
}
@@ -133,4 +136,10 @@
}
.control-box .multi-link::before{
content: "转到2人车队";
+}
+.control-box .btn-show-mon-id::before{
+ content: "隐藏怪物ID";
+}
+.not-show-mon-id .control-box .btn-show-mon-id::before{
+ content: "显示怪物ID";
}
\ No newline at end of file
diff --git a/script.js b/script.js
index 1ab6c577..f0104f8e 100644
--- a/script.js
+++ b/script.js
@@ -444,6 +444,11 @@ function changeid(mon,monDom,latentDom)
sawoken.classList.add("display-none");
}
}
+ var m_id = monDom.querySelector(".id");
+ if (m_id) //如果存在超觉醒的DOM且提供了超觉醒
+ {
+ m_id.innerHTML = mon.id;
+ }
if (mon.plus) //如果提供了加值
{
monDom.querySelector(".plus .hp").innerHTML = mon.plus[0];
diff --git a/solo.html b/solo.html
index 0c75af7e..f57f1ea7 100644
--- a/solo.html
+++ b/solo.html
@@ -49,7 +49,7 @@ var formation = {