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.
Files changed (2) hide show
  1. package/lib/index.js +16 -8
  2. 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
- `🏷️ 标签:${mainBoss.tags?.join("、") || "无"}`,
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
- `🏷️ 标签:${minion.tags?.join("、") || "无"}`,
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 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "koishi-plugin-ggcevo-game",
3
3
  "description": "《星际争霸2》咕咕虫-evolved地图的专属游戏助手插件,集成天梯排行、抽奖系统、签到福利、兑换商城等丰富功能。",
4
- "version": "1.3.47",
4
+ "version": "1.3.48",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
7
7
  "files": [