@yorha2b-lab/autodev 2.1.9 → 2.1.11
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/package.json +1 -1
- package/src/utils/utils.js +7 -5
package/package.json
CHANGED
package/src/utils/utils.js
CHANGED
|
@@ -126,11 +126,13 @@ const matrixEffect = async (duration = 1500) => {
|
|
|
126
126
|
if (Date.now() > endTime) {
|
|
127
127
|
clearInterval(interval)
|
|
128
128
|
console.log(chalk.white(' [System] ') + chalk.green(language('所有构筑数据已同步至 Bunker 存储节点。', 'All data synced to Bunker storage nodes.')))
|
|
129
|
-
if (
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
if (currentTotal !== 0) {
|
|
130
|
+
if (isLegendary) {
|
|
131
|
+
console.log(chalk.yellow.bold(language(` [Achievement] 物理克隆总数已超越 3000 战略阈值!当前战力:${currentTotal}`, ` [Achievement] Physical clone count has exceeded 3000 strategic threshold! Current power: ${currentTotal}`)))
|
|
132
|
+
console.log(chalk.yellow(language(' [Bunker] 恭喜指挥官,您的构筑协议已成为人类荣光的一部分。', ' [Bunker] Congratulations, your construction protocol is now part of humanity.')))
|
|
133
|
+
} else {
|
|
134
|
+
console.log(chalk.cyan(language(` [System] 当前构筑总数:${currentTotal}。距离 3000 勋章还剩 ${3000 - currentTotal} 次。`, ` [System] Current clones: ${currentTotal}. ${3000 - currentTotal} to Achievement.`)))
|
|
135
|
+
}
|
|
134
136
|
}
|
|
135
137
|
console.log(chalk.cyan(language(' [System] 如果它能帮您节省时间,请在 GitHub 上给它点个赞 ⭐。', ' [System] If it saves you time, feel free to give it a ⭐ on GitHub.')))
|
|
136
138
|
console.log(chalk.cyan('\n[System] Signal Lost. Glory to Mankind.\n'))
|