koishi-plugin-ggcevo-game 1.3.47 → 1.3.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +16 -8
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -5594,10 +5594,14 @@ ${scatterEffectMessages.map((m) => `▸ ${m}`).join("\n")}`
|
|
|
5594
5594
|
if (bossGroup.main.energy > 0) {
|
|
5595
5595
|
result.push(`⚡ 能量:${mainBoss.energy}/1000`);
|
|
5596
5596
|
}
|
|
5597
|
-
result.push(
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5597
|
+
result.push(`🏷️ 标签:${mainBoss.tags?.join("、") || "无"}`);
|
|
5598
|
+
if (mainBoss.Vulnerability > 0) {
|
|
5599
|
+
result.push(`☢️ 辐射:${mainBoss.Vulnerability}层`);
|
|
5600
|
+
}
|
|
5601
|
+
if (mainBoss.freezing > 0) {
|
|
5602
|
+
result.push(`❄️ 寒冷:${mainBoss.freezing}层`);
|
|
5603
|
+
}
|
|
5604
|
+
result.push(`✨ 被动:`);
|
|
5601
5605
|
if (mainBoss.skills.length > 0) {
|
|
5602
5606
|
result.push(...mainBoss.skills.map((p) => `➤ ${p}:${passiveConfig[p]?.description}`));
|
|
5603
5607
|
} else {
|
|
@@ -5620,10 +5624,14 @@ ${scatterEffectMessages.map((m) => `▸ ${m}`).join("\n")}`
|
|
|
5620
5624
|
if (minionConfig && minionConfig.energy > 0) {
|
|
5621
5625
|
minionInfo.push(`⚡ 能量:${minion.energy}/1000`);
|
|
5622
5626
|
}
|
|
5623
|
-
minionInfo.push(
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
+
minionInfo.push(`🏷️ 标签:${minion.tags?.join("、") || "无"}`);
|
|
5628
|
+
if (minion.Vulnerability > 0) {
|
|
5629
|
+
minionInfo.push(`☢️ 辐射:${minion.Vulnerability}层`);
|
|
5630
|
+
}
|
|
5631
|
+
if (minion.freezing > 0) {
|
|
5632
|
+
minionInfo.push(`❄️ 寒冷:${minion.freezing}层`);
|
|
5633
|
+
}
|
|
5634
|
+
minionInfo.push(`✨ 被动:`);
|
|
5627
5635
|
if (minion.skills.length > 0) {
|
|
5628
5636
|
minionInfo.push(...minion.skills.map((p) => `➤ ${p}:${passiveConfig[p]?.description}`));
|
|
5629
5637
|
} else {
|