koishi-plugin-ggcevo-game 1.2.23 → 1.2.25
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 +32 -12
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -265,10 +265,8 @@ function apply(ctx, config) {
|
|
|
265
265
|
description: "标准配置武器,中距离作战利器",
|
|
266
266
|
price: 100,
|
|
267
267
|
tagEffects: {
|
|
268
|
-
"轻甲": 1.5
|
|
268
|
+
"轻甲": 1.5
|
|
269
269
|
// 对轻甲目标造成150%伤害
|
|
270
|
-
"重甲": 0.7
|
|
271
|
-
// 对重甲目标造成70%伤害
|
|
272
270
|
}
|
|
273
271
|
},
|
|
274
272
|
"激光步枪": {
|
|
@@ -286,12 +284,12 @@ function apply(ctx, config) {
|
|
|
286
284
|
"焚烧枪": {
|
|
287
285
|
id: 3,
|
|
288
286
|
type: "热能武器",
|
|
289
|
-
damage:
|
|
287
|
+
damage: 20,
|
|
290
288
|
description: "基于热能的强大武器,烧烬一切",
|
|
291
289
|
price: 450,
|
|
292
290
|
tagEffects: {
|
|
293
291
|
"惧热": 2,
|
|
294
|
-
"生物": 1.
|
|
292
|
+
"生物": 1.5,
|
|
295
293
|
"护盾": 0.5
|
|
296
294
|
}
|
|
297
295
|
},
|
|
@@ -303,19 +301,41 @@ function apply(ctx, config) {
|
|
|
303
301
|
price: 850,
|
|
304
302
|
tagEffects: {
|
|
305
303
|
"重甲": 2,
|
|
306
|
-
"机械": 0.
|
|
307
|
-
"护盾": 0.
|
|
304
|
+
"机械": 0.8,
|
|
305
|
+
"护盾": 0.5
|
|
308
306
|
}
|
|
309
307
|
},
|
|
310
|
-
"
|
|
308
|
+
"等离子切割机": {
|
|
311
309
|
id: 5,
|
|
312
310
|
type: "实弹武器",
|
|
313
|
-
damage:
|
|
311
|
+
damage: 12,
|
|
312
|
+
description: "一种改造后的采矿切割机,有效对抗重甲单位",
|
|
313
|
+
price: 150,
|
|
314
|
+
tagEffects: {
|
|
315
|
+
"重甲": 1.5,
|
|
316
|
+
"机械": 1.2
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"霰弹枪": {
|
|
320
|
+
id: 6,
|
|
321
|
+
type: "实弹武器",
|
|
322
|
+
damage: 28,
|
|
323
|
+
description: "近距离攻击武器,专为遭遇战设计使用",
|
|
324
|
+
price: 325,
|
|
325
|
+
tagEffects: {
|
|
326
|
+
"轻甲": 1.5,
|
|
327
|
+
"重甲": 0.5
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"狙击步枪": {
|
|
331
|
+
id: 7,
|
|
332
|
+
type: "实弹武器",
|
|
333
|
+
damage: 50,
|
|
314
334
|
description: "用于隐秘射击的最佳武器,但是无法穿透护甲",
|
|
315
335
|
price: 550,
|
|
316
336
|
tagEffects: {
|
|
317
|
-
"
|
|
318
|
-
"
|
|
337
|
+
"生物": 1.5,
|
|
338
|
+
"轻甲": 0.8,
|
|
319
339
|
"重甲": 0.2
|
|
320
340
|
}
|
|
321
341
|
}
|
|
@@ -335,7 +355,7 @@ function apply(ctx, config) {
|
|
|
335
355
|
},
|
|
336
356
|
// 新增专属模块
|
|
337
357
|
"裂甲核心": {
|
|
338
|
-
cost:
|
|
358
|
+
cost: 750,
|
|
339
359
|
effect: "伤害+40%,对重甲目标变更为造成120%伤害",
|
|
340
360
|
exclusiveTo: "高斯步枪",
|
|
341
361
|
// 指定专属武器
|