koishi-plugin-ggcevo-game 1.5.15 → 1.5.17
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 +11 -3
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -781,7 +781,7 @@ var syndicatePirateConfig = [
|
|
|
781
781
|
},
|
|
782
782
|
{
|
|
783
783
|
professionName: "计算机专家",
|
|
784
|
-
effect: "黑市订购设备工具类享有50%折扣; 主动发起的PK胜率提高10%; 每日主动PK次数增加3
|
|
784
|
+
effect: "黑市订购设备工具类享有50%折扣; 主动发起的PK胜率提高10%; 每日主动PK次数增加3次",
|
|
785
785
|
requirements: "仓库中至少拥有一个黑市订购的设备工具类物品",
|
|
786
786
|
Jobtransfer: true,
|
|
787
787
|
costredcrystal: 30
|
|
@@ -1775,6 +1775,9 @@ var BattleEffectProcessor = {
|
|
|
1775
1775
|
// 弱化形态
|
|
1776
1776
|
handleWeakForm: /* @__PURE__ */ __name(function(targetBoss) {
|
|
1777
1777
|
if (targetBoss.type === "子代") {
|
|
1778
|
+
if (targetBoss.name === "空间站哨枪塔" || targetBoss.name === "孵化场" || targetBoss.name === "巢穴雷兽" || targetBoss.name === "巢穴战士" || targetBoss.name === "巢穴甲虫") {
|
|
1779
|
+
return null;
|
|
1780
|
+
}
|
|
1778
1781
|
const newBuffMultiplier = 0.1;
|
|
1779
1782
|
const messages = [`📚 【弱化形态】生效:子代防御脆弱,受到的伤害+10%`];
|
|
1780
1783
|
return {
|
|
@@ -5027,6 +5030,13 @@ var ggcevoUpdates = [
|
|
|
5027
5030
|
- 修改了[燃烧]机制
|
|
5028
5031
|
- 修改了回血技能逻辑,现在攻击造成致命伤害时不再触发回血技能
|
|
5029
5032
|
`.trim()
|
|
5033
|
+
},
|
|
5034
|
+
{
|
|
5035
|
+
version: "1.5.16",
|
|
5036
|
+
time: "2025-07-03",
|
|
5037
|
+
content: `
|
|
5038
|
+
- 删除计算机能力:被动PK失败时有50%的概率不损失金币
|
|
5039
|
+
`.trim()
|
|
5030
5040
|
}
|
|
5031
5041
|
];
|
|
5032
5042
|
function compareVersions(a, b) {
|
|
@@ -8577,8 +8587,6 @@ ${protectionList}
|
|
|
8577
8587
|
let computerExpertProtection = false;
|
|
8578
8588
|
if (isWin && targetCareer?.career === "计算机专家") {
|
|
8579
8589
|
if (Math.random() < 0.5) {
|
|
8580
|
-
computerExpertProtection = true;
|
|
8581
|
-
goldTransfer = 0;
|
|
8582
8590
|
}
|
|
8583
8591
|
}
|
|
8584
8592
|
let hornEffect = false;
|