koishi-plugin-ggcevo-game 1.4.8 → 1.4.9
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 -3
- package/lib/weapons.d.ts +0 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -137,7 +137,6 @@ var weaponConfig = {
|
|
|
137
137
|
redCrystalCost: 10,
|
|
138
138
|
isantiair: true,
|
|
139
139
|
tagEffects: {
|
|
140
|
-
"轻甲": 0.5,
|
|
141
140
|
"重甲": 0.2
|
|
142
141
|
}
|
|
143
142
|
},
|
|
@@ -238,7 +237,7 @@ var weaponConfig = {
|
|
|
238
237
|
category: "能量武器",
|
|
239
238
|
damage: 32,
|
|
240
239
|
description: "一种原型能量武器,能够发射强大的脉冲",
|
|
241
|
-
specialeffect: "
|
|
240
|
+
specialeffect: "攻击减少目标的2层技能计数",
|
|
242
241
|
price: 1500,
|
|
243
242
|
redCrystalCost: 15,
|
|
244
243
|
isantiair: true,
|
|
@@ -2529,7 +2528,7 @@ var PassiveHandler = {
|
|
|
2529
2528
|
{ name: targetBoss.name },
|
|
2530
2529
|
{ Vulnerability: newLayers }
|
|
2531
2530
|
);
|
|
2532
|
-
if (newLayers ===
|
|
2531
|
+
if (newLayers === currentLayers) {
|
|
2533
2532
|
messages.push(`☢️ 【辐射】效果达到上限(10层)`);
|
|
2534
2533
|
} else {
|
|
2535
2534
|
const layerIncrease = newLayers - currentLayers;
|
package/lib/weapons.d.ts
CHANGED