koishi-plugin-ggcevo-game 1.3.57 → 1.3.58
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 +2 -3
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -6312,10 +6312,10 @@ ${scatterEffectMessages.map((m) => `▸ ${m}`).join("\n")}`
|
|
|
6312
6312
|
const redcrystal = careerData[0]?.redcrystal || 0;
|
|
6313
6313
|
const message = [`【${handle}的仓库】`];
|
|
6314
6314
|
message.push(`💰 金币:${totalRewards}`);
|
|
6315
|
-
if (
|
|
6315
|
+
if (careerData[0]?.group === "辛迪加海盗") {
|
|
6316
6316
|
message.push(`🔴 红晶:${redcrystal}`);
|
|
6317
|
-
message.push("――――――――――――――");
|
|
6318
6317
|
}
|
|
6318
|
+
message.push("――――――――――――――");
|
|
6319
6319
|
const validItems = items.filter(
|
|
6320
6320
|
(item) => Object.values(SyndicatedItems).some(
|
|
6321
6321
|
(specialItem) => specialItem.id === item.itemId
|
|
@@ -6432,7 +6432,6 @@ ${Spacestationtechnology.map((t) => t.techname).join("、")}`;
|
|
|
6432
6432
|
'使用 "升级 科技名称" 进行升级',
|
|
6433
6433
|
"====================",
|
|
6434
6434
|
...techDetails,
|
|
6435
|
-
"====================",
|
|
6436
6435
|
isIntelligenceOfficer && "※ 情报副官享受20%升级折扣"
|
|
6437
6436
|
// 新增折扣提示
|
|
6438
6437
|
].filter(Boolean).join("\n");
|