koishi-plugin-ggcevo-game 1.6.58 → 1.6.59
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 +12 -4
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -74,7 +74,7 @@ var weaponConfig = {
|
|
|
74
74
|
damage: 23,
|
|
75
75
|
armorDamageReduction: 0.25,
|
|
76
76
|
description: "基于热能的强大武器,烧烬一切",
|
|
77
|
-
specialeffect: "攻击时为目标附加1层[燃烧]效果,每层使目标受到火焰伤害时额外造成
|
|
77
|
+
specialeffect: "攻击时为目标附加1层[燃烧]效果,每层使目标受到火焰伤害时额外造成1点伤害(至多额外造成100点伤害)",
|
|
78
78
|
price: 450,
|
|
79
79
|
redCrystalCost: 4,
|
|
80
80
|
isantiair: false,
|
|
@@ -388,7 +388,7 @@ var weaponConfig = {
|
|
|
388
388
|
damage: 90,
|
|
389
389
|
armorDamageReduction: 0,
|
|
390
390
|
description: "这是传说中的武器",
|
|
391
|
-
specialeffect: "造成的20%伤害转化为火焰伤害;攻击时为目标附加2层[燃烧]效果,每层使目标受到火焰伤害时额外造成
|
|
391
|
+
specialeffect: "造成的20%伤害转化为火焰伤害;攻击时为目标附加2层[燃烧]效果,每层使目标受到火焰伤害时额外造成1点伤害(至多额外造成100点伤害)",
|
|
392
392
|
price: 6400,
|
|
393
393
|
redCrystalCost: 200,
|
|
394
394
|
isantiair: false,
|
|
@@ -4616,8 +4616,8 @@ function applyPassiveEffects(targetBoss, activeBosses, weaponName, damage, hasCr
|
|
|
4616
4616
|
finalDamage *= 2;
|
|
4617
4617
|
}
|
|
4618
4618
|
if (weaponName === "焚烧枪" || weaponName === "龙息霰弹枪") {
|
|
4619
|
-
const currentBurnLayers = Math.min(targetBoss?.burnLayers || 0,
|
|
4620
|
-
const burnDamage = currentBurnLayers *
|
|
4619
|
+
const currentBurnLayers = Math.min(targetBoss?.burnLayers || 0, 100);
|
|
4620
|
+
const burnDamage = currentBurnLayers * 1;
|
|
4621
4621
|
if (burnDamage > 0) {
|
|
4622
4622
|
messages.push(`🔥 【燃烧】效果造成额外${burnDamage}点伤害`);
|
|
4623
4623
|
}
|
|
@@ -5507,6 +5507,14 @@ var ggcevoUpdates = [
|
|
|
5507
5507
|
- 回调了祈愿“喵喵财源”效果
|
|
5508
5508
|
- 兑换赞助物品新增当前赛季场数要求
|
|
5509
5509
|
`.trim()
|
|
5510
|
+
},
|
|
5511
|
+
{
|
|
5512
|
+
version: "1.6.59",
|
|
5513
|
+
time: "2025-08-2",
|
|
5514
|
+
content: `
|
|
5515
|
+
- 修改铝热炸弹的机制,现在无法直接击杀异形
|
|
5516
|
+
- 削弱了燃烧机制,现在每一层额外造成1点伤害(上限依旧是100点)
|
|
5517
|
+
`.trim()
|
|
5510
5518
|
}
|
|
5511
5519
|
];
|
|
5512
5520
|
function compareVersions(a, b) {
|