koishi-plugin-ggcevo-game 1.4.85 → 1.4.86
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 +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -507,7 +507,7 @@ var modConfig = {
|
|
|
507
507
|
},
|
|
508
508
|
"微型聚变核心": {
|
|
509
509
|
cost: 2750,
|
|
510
|
-
effect: "连续攻击叠加[聚变]效果,每层提高10%伤害(最多
|
|
510
|
+
effect: "连续攻击叠加[聚变]效果,每层提高10%伤害(最多6层)",
|
|
511
511
|
exclusiveTo: "聚变磁轨枪",
|
|
512
512
|
isExclusive: true
|
|
513
513
|
}
|
|
@@ -5164,7 +5164,7 @@ function calculateModifiers(equippedWeapon, weaponName) {
|
|
|
5164
5164
|
}
|
|
5165
5165
|
if (equippedWeapon.installedMods?.includes("微型聚变核心")) {
|
|
5166
5166
|
const currentCombo = equippedWeapon?.comboCount || 0;
|
|
5167
|
-
const maxStacks =
|
|
5167
|
+
const maxStacks = 6;
|
|
5168
5168
|
const bonusPerCombo = 0.1;
|
|
5169
5169
|
const effectiveStacks = Math.min(currentCombo, maxStacks);
|
|
5170
5170
|
const bonusDamage = effectiveStacks * bonusPerCombo;
|