koishi-plugin-ggcevo-game 1.6.5 → 1.6.6
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 +4 -4
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -11000,7 +11000,7 @@ ${Spacestationtechnology.map((t) => t.techname).join("、")}`;
|
|
|
11000
11000
|
`🕒 开始时间:${record.startTime.toLocaleString("zh-CN", { hour12: false })}`,
|
|
11001
11001
|
`⏱️ 当前时间:${nowtime.toLocaleString("zh-CN", { hour12: false })}`,
|
|
11002
11002
|
`⏳ 还需等待:${remaining}分钟`,
|
|
11003
|
-
`💡
|
|
11003
|
+
`💡 提示:挖矿至少需要进行1个小时`
|
|
11004
11004
|
].join("\n");
|
|
11005
11005
|
}
|
|
11006
11006
|
let halfHours = Math.floor(duration / 30);
|
|
@@ -11904,7 +11904,7 @@ ${Spacestationtechnology.map((t) => t.techname).join("、")}`;
|
|
|
11904
11904
|
currentBonus: item.bonus,
|
|
11905
11905
|
maxBonus: upgradeConfig2.maxBonus,
|
|
11906
11906
|
cost: actualCost,
|
|
11907
|
-
discount: isCommander ? `(原价: ${baseCost})` : ""
|
|
11907
|
+
discount: isCommander ? `(原价: ${baseCost} 红晶)` : ""
|
|
11908
11908
|
});
|
|
11909
11909
|
}
|
|
11910
11910
|
if (upgradableItems.length === 0) {
|
|
@@ -11924,8 +11924,8 @@ ${Spacestationtechnology.map((t) => t.techname).join("、")}`;
|
|
|
11924
11924
|
"====================",
|
|
11925
11925
|
...upgradableItems.map((item) => {
|
|
11926
11926
|
return `▸ ${item.name}:
|
|
11927
|
-
升级加成 ${item.currentBonus}
|
|
11928
|
-
升级消耗:${item.cost} 红晶 ${item.discount}
|
|
11927
|
+
升级加成 ${item.currentBonus}% / ${item.maxBonus}%
|
|
11928
|
+
升级消耗:${item.cost} 红晶 ${item.discount}`;
|
|
11929
11929
|
}),
|
|
11930
11930
|
"====================",
|
|
11931
11931
|
`使用"升级物品 物品名称"进行升级`
|