koishi-plugin-ggcevo-game 1.5.3 → 1.5.5
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 +19 -8
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -577,7 +577,7 @@ var SyndicatedItems = {
|
|
|
577
577
|
type: "设备工具",
|
|
578
578
|
description: "一个复杂的雷达面罩,用于远距离侦察或探测隐藏单位",
|
|
579
579
|
price: 0,
|
|
580
|
-
redCrystalCost:
|
|
580
|
+
redCrystalCost: 20,
|
|
581
581
|
condition: "辛迪加海盗阵营",
|
|
582
582
|
effects: "使用武器攻击时,无视目标10%的减伤效果"
|
|
583
583
|
},
|
|
@@ -3888,17 +3888,20 @@ var BattleEffectProcessor = {
|
|
|
3888
3888
|
if (!targetBoss.skills.includes("加快分化")) {
|
|
3889
3889
|
return null;
|
|
3890
3890
|
}
|
|
3891
|
-
const
|
|
3892
|
-
|
|
3891
|
+
const currentStacks = targetBoss.skillStacks || 0;
|
|
3892
|
+
const consumedStacks = Math.floor(currentStacks / 2);
|
|
3893
|
+
if (consumedStacks <= 0) {
|
|
3893
3894
|
return null;
|
|
3894
3895
|
}
|
|
3895
|
-
const healAmount =
|
|
3896
|
+
const healAmount = consumedStacks * 10;
|
|
3896
3897
|
return {
|
|
3897
|
-
messages: [`🧬
|
|
3898
|
+
messages: [`🧬 【加快分化】生效:消耗${consumedStacks}层「基因变异」回复${healAmount}点生命值`],
|
|
3898
3899
|
targetUpdates: {
|
|
3899
3900
|
name: targetBoss.name,
|
|
3900
3901
|
updates: {
|
|
3901
|
-
hpChange: healAmount
|
|
3902
|
+
hpChange: healAmount,
|
|
3903
|
+
skillStacksChanged: -consumedStacks
|
|
3904
|
+
// 消耗层数
|
|
3902
3905
|
}
|
|
3903
3906
|
}
|
|
3904
3907
|
};
|
|
@@ -4754,7 +4757,7 @@ var passiveConfig = {
|
|
|
4754
4757
|
derivedSkills: []
|
|
4755
4758
|
},
|
|
4756
4759
|
"基因变异": {
|
|
4757
|
-
description: "移除孤立无援状态;每次受击叠加1层「基因变异」(上限100层);每次受击回复100点能量;每受击3次随机获得1个基因技能,累计获得4
|
|
4760
|
+
description: "移除孤立无援状态;每次受击叠加1层「基因变异」(上限100层);每次受击回复100点能量;每受击3次随机获得1个基因技能,累计获得4个基因技能后再次触发则移除全部基因技能",
|
|
4758
4761
|
belong: ["坏兄弟"],
|
|
4759
4762
|
derivedSkills: [
|
|
4760
4763
|
"优化冗余片段",
|
|
@@ -4786,7 +4789,7 @@ var passiveConfig = {
|
|
|
4786
4789
|
derivedSkills: []
|
|
4787
4790
|
},
|
|
4788
4791
|
"加快分化": {
|
|
4789
|
-
description: "
|
|
4792
|
+
description: "每次受击消耗一半层数回复X点血量(X为消耗的「基因变异」层数 x 10)",
|
|
4790
4793
|
belong: [],
|
|
4791
4794
|
derivedSkills: []
|
|
4792
4795
|
},
|
|
@@ -4897,6 +4900,14 @@ var ggcevoUpdates = [
|
|
|
4897
4900
|
- 下调了高斯步枪的价格
|
|
4898
4901
|
- 削弱了坏兄弟的部分衍生技能
|
|
4899
4902
|
`.trim()
|
|
4903
|
+
},
|
|
4904
|
+
{
|
|
4905
|
+
version: "1.5.5",
|
|
4906
|
+
time: "2025-06-28",
|
|
4907
|
+
content: `
|
|
4908
|
+
- 削弱了坏兄弟的加快分化基因技能
|
|
4909
|
+
- 雷达面罩价格下调至20红晶
|
|
4910
|
+
`.trim()
|
|
4900
4911
|
}
|
|
4901
4912
|
];
|
|
4902
4913
|
function compareVersions(a, b) {
|