koishi-plugin-ggcevo-game 1.3.25 → 1.3.26
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 +3 -5
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -505,7 +505,7 @@ function apply(ctx, config) {
|
|
|
505
505
|
},
|
|
506
506
|
"光束曲射晶片": {
|
|
507
507
|
cost: 2250,
|
|
508
|
-
effect: "
|
|
508
|
+
effect: "攻击目标后,若有存活的其他异形,则对其造成50%的武器基础伤害",
|
|
509
509
|
exclusiveTo: "碎骨步枪",
|
|
510
510
|
isExclusive: true
|
|
511
511
|
}
|
|
@@ -2706,9 +2706,7 @@ ${itemDetails.join("\n")}`;
|
|
|
2706
2706
|
⚡ 加成效果:
|
|
2707
2707
|
▸ ${messages.join("\n▸ ")}`;
|
|
2708
2708
|
}
|
|
2709
|
-
return
|
|
2710
|
-
💰 金币 x ${finalPoints}${totalBonus > 0 ? `(基础值 ${basePoints})` : ""}
|
|
2711
|
-
🪙 咕咕币 x ${tickets}${effectMessage}`;
|
|
2709
|
+
return "签到成功!本月累计签到" + monthlyDays + "天,获得:\n💰 金币 x " + finalPoints + (totalBonus > 0 ? " (基础值 " + basePoints + ")" : "") + "\n🪙 咕咕币 x " + tickets + effectMessage;
|
|
2712
2710
|
} catch (error) {
|
|
2713
2711
|
console.error("签到命令时发生错误:", error);
|
|
2714
2712
|
return "服务器繁忙,请稍后尝试。";
|
|
@@ -4806,7 +4804,7 @@ ${passiveMessages.map((m) => `▸ ${m}`).join("\n")}`
|
|
|
4806
4804
|
] : [],
|
|
4807
4805
|
`造成伤害:${initialDamage}${hasCrit ? "(✨ 暴击)" : ""}`,
|
|
4808
4806
|
...extraDamages.length > 0 ? [
|
|
4809
|
-
|
|
4807
|
+
`散射伤害:`,
|
|
4810
4808
|
...extraDamages.map((d) => `▸ 对 ${d.name} 造成 ${d.damage} 伤害`)
|
|
4811
4809
|
] : [],
|
|
4812
4810
|
`获得金币:${finalReward}${careerMessage}`,
|