koishi-plugin-ggcevo-game 1.4.73 → 1.4.74
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 +6 -6
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -340,7 +340,7 @@ var weaponConfig = {
|
|
|
340
340
|
redCrystalCost: 200,
|
|
341
341
|
isantiair: true,
|
|
342
342
|
tagEffects: {
|
|
343
|
-
"生物":
|
|
343
|
+
"生物": 1.75,
|
|
344
344
|
"护盾": 0.5
|
|
345
345
|
}
|
|
346
346
|
},
|
|
@@ -356,7 +356,7 @@ var weaponConfig = {
|
|
|
356
356
|
redCrystalCost: 200,
|
|
357
357
|
isantiair: true,
|
|
358
358
|
tagEffects: {
|
|
359
|
-
"重甲": 1.
|
|
359
|
+
"重甲": 1.75
|
|
360
360
|
}
|
|
361
361
|
},
|
|
362
362
|
"龙息霰弹枪": {
|
|
@@ -423,15 +423,15 @@ var weaponConfig = {
|
|
|
423
423
|
id: 107,
|
|
424
424
|
type: "能量武器",
|
|
425
425
|
category: "传奇武器",
|
|
426
|
-
damage:
|
|
426
|
+
damage: 80,
|
|
427
427
|
armorDamageReduction: 0,
|
|
428
428
|
description: "一件传奇武器",
|
|
429
|
-
specialeffect: "
|
|
429
|
+
specialeffect: "每次攻击有33%概率发射一枚特殊的榴弹,造成50%的额外伤害,并减少目标0.25护甲;若连续2次攻击没发射榴弹,则下一次攻击必定发射",
|
|
430
430
|
price: 6400,
|
|
431
431
|
redCrystalCost: 200,
|
|
432
432
|
isantiair: true,
|
|
433
433
|
tagEffects: {
|
|
434
|
-
"重甲": 1.
|
|
434
|
+
"重甲": 1.2
|
|
435
435
|
}
|
|
436
436
|
},
|
|
437
437
|
"核聚变重炮": {
|
|
@@ -3513,7 +3513,7 @@ var BattleEffectProcessor = {
|
|
|
3513
3513
|
// 释放信息素 - 所有存活巢穴子代减伤20%
|
|
3514
3514
|
handleReleasePheromones: /* @__PURE__ */ __name(function(targetBoss) {
|
|
3515
3515
|
if (!targetBoss.name.includes("巢穴雷兽") && !targetBoss.name.includes("巢穴战士") && !targetBoss.name.includes("巢穴甲虫") && !targetBoss.name.includes("孵化场")) return null;
|
|
3516
|
-
const messages = [`🌬️
|
|
3516
|
+
const messages = [`🌬️ 【释放信息素】生效:受到的伤害-20%`];
|
|
3517
3517
|
const nerfMultiplier = 0.2;
|
|
3518
3518
|
return { messages, nerfMultiplier };
|
|
3519
3519
|
}, "handleReleasePheromones"),
|