koishi-plugin-ggcevo-game 1.4.60 → 1.4.61
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 +4 -3
- package/lib/weapons.d.ts +1 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -261,15 +261,16 @@ var weaponConfig = {
|
|
|
261
261
|
id: 16,
|
|
262
262
|
type: "能量武器",
|
|
263
263
|
category: "能量武器",
|
|
264
|
-
damage:
|
|
264
|
+
damage: 60,
|
|
265
265
|
description: "用于解决高生命值目标的次时代武器,擅长对付护盾耗尽或没有护甲的敌人",
|
|
266
266
|
specialeffect: "",
|
|
267
267
|
price: 1750,
|
|
268
268
|
redCrystalCost: 20,
|
|
269
269
|
isantiair: true,
|
|
270
270
|
tagEffects: {
|
|
271
|
-
"
|
|
272
|
-
"
|
|
271
|
+
"生物": 1.5,
|
|
272
|
+
"护盾": 0.2,
|
|
273
|
+
"重甲": 0.2
|
|
273
274
|
}
|
|
274
275
|
},
|
|
275
276
|
"聚变磁轨枪": {
|
package/lib/weapons.d.ts
CHANGED