koishi-plugin-ggcevo-game 1.4.61 → 1.4.63
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/boss/BattleEffectProcessor.d.ts +22 -10
- package/lib/boss/boss.d.ts +6 -0
- package/lib/boss/damagecalculation.d.ts +1 -2
- package/lib/index.js +399 -278
- package/lib/tasks.d.ts +6 -11
- package/lib/weapons.d.ts +60 -15
- package/package.json +1 -1
package/lib/tasks.d.ts
CHANGED
|
@@ -2,46 +2,41 @@ export declare const Tasklist: {
|
|
|
2
2
|
readonly 伽马辐射: {
|
|
3
3
|
readonly id: 1;
|
|
4
4
|
readonly type: "可重复任务";
|
|
5
|
-
readonly description: "利用【伽马枪】武器对目标造成辐射伤害";
|
|
6
5
|
readonly target: 1;
|
|
7
6
|
readonly price: 50;
|
|
8
7
|
readonly redCrystalCost: 0;
|
|
9
|
-
readonly condition: "
|
|
8
|
+
readonly condition: "使用【伽马枪】攻击目标并成功增加其辐射层数";
|
|
10
9
|
};
|
|
11
10
|
readonly 绝对零度: {
|
|
12
11
|
readonly id: 2;
|
|
13
12
|
readonly type: "可重复任务";
|
|
14
|
-
readonly description: "利用【零度之下】武器对目标造成寒冷伤害";
|
|
15
13
|
readonly target: 1;
|
|
16
14
|
readonly price: 50;
|
|
17
15
|
readonly redCrystalCost: 0;
|
|
18
|
-
readonly condition: "
|
|
16
|
+
readonly condition: "使用【零度之下】攻击目标并成功增加其寒冷层数";
|
|
19
17
|
};
|
|
20
18
|
readonly 胆汁引爆: {
|
|
21
19
|
readonly id: 3;
|
|
22
20
|
readonly type: "可重复任务";
|
|
23
|
-
readonly description: "利用【焚烧枪】武器引爆目标的胆汁";
|
|
24
21
|
readonly target: 1;
|
|
25
22
|
readonly price: 200;
|
|
26
23
|
readonly redCrystalCost: 0;
|
|
27
|
-
readonly condition: "
|
|
24
|
+
readonly condition: "使用【焚烧枪】攻击目标并成功引爆其≥10层的胆汁";
|
|
28
25
|
};
|
|
29
26
|
readonly 脉冲干扰: {
|
|
30
27
|
readonly id: 4;
|
|
31
28
|
readonly type: "可重复任务";
|
|
32
|
-
readonly description: "利用【脉冲扰乱枪】武器干扰目标的技能释放";
|
|
33
29
|
readonly target: 1;
|
|
34
30
|
readonly price: 75;
|
|
35
31
|
readonly redCrystalCost: 0;
|
|
36
|
-
readonly condition: "
|
|
32
|
+
readonly condition: "使用【脉冲扰乱枪】攻击目标并成功减少其技能层数";
|
|
37
33
|
};
|
|
38
|
-
readonly
|
|
34
|
+
readonly 能量消耗: {
|
|
39
35
|
readonly id: 5;
|
|
40
36
|
readonly type: "可重复任务";
|
|
41
|
-
readonly description: "利用【弧焊枪】武器消耗目标的能量";
|
|
42
37
|
readonly target: 1;
|
|
43
38
|
readonly price: 75;
|
|
44
39
|
readonly redCrystalCost: 0;
|
|
45
|
-
readonly condition: "
|
|
40
|
+
readonly condition: "使用【弧焊枪】或【DG-3电弧步枪】攻击目标并成功消耗其能量";
|
|
46
41
|
};
|
|
47
42
|
};
|
package/lib/weapons.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare const weaponConfig: {
|
|
|
4
4
|
type: string;
|
|
5
5
|
category: string;
|
|
6
6
|
damage: number;
|
|
7
|
+
armorDamageReduction: number;
|
|
7
8
|
description: string;
|
|
8
9
|
specialeffect: string;
|
|
9
10
|
price: number;
|
|
@@ -18,6 +19,7 @@ export declare const weaponConfig: {
|
|
|
18
19
|
type: string;
|
|
19
20
|
category: string;
|
|
20
21
|
damage: number;
|
|
22
|
+
armorDamageReduction: number;
|
|
21
23
|
description: string;
|
|
22
24
|
specialeffect: string;
|
|
23
25
|
price: number;
|
|
@@ -25,7 +27,6 @@ export declare const weaponConfig: {
|
|
|
25
27
|
isantiair: boolean;
|
|
26
28
|
tagEffects: {
|
|
27
29
|
重甲: number;
|
|
28
|
-
护盾: number;
|
|
29
30
|
};
|
|
30
31
|
};
|
|
31
32
|
焚烧枪: {
|
|
@@ -33,6 +34,7 @@ export declare const weaponConfig: {
|
|
|
33
34
|
type: string;
|
|
34
35
|
category: string;
|
|
35
36
|
damage: number;
|
|
37
|
+
armorDamageReduction: number;
|
|
36
38
|
description: string;
|
|
37
39
|
specialeffect: string;
|
|
38
40
|
price: number;
|
|
@@ -49,6 +51,7 @@ export declare const weaponConfig: {
|
|
|
49
51
|
type: string;
|
|
50
52
|
category: string;
|
|
51
53
|
damage: number;
|
|
54
|
+
armorDamageReduction: number;
|
|
52
55
|
description: string;
|
|
53
56
|
specialeffect: string;
|
|
54
57
|
price: number;
|
|
@@ -56,7 +59,6 @@ export declare const weaponConfig: {
|
|
|
56
59
|
isantiair: boolean;
|
|
57
60
|
tagEffects: {
|
|
58
61
|
重甲: number;
|
|
59
|
-
护盾: number;
|
|
60
62
|
};
|
|
61
63
|
};
|
|
62
64
|
等离子切割机: {
|
|
@@ -64,6 +66,7 @@ export declare const weaponConfig: {
|
|
|
64
66
|
type: string;
|
|
65
67
|
category: string;
|
|
66
68
|
damage: number;
|
|
69
|
+
armorDamageReduction: number;
|
|
67
70
|
description: string;
|
|
68
71
|
specialeffect: string;
|
|
69
72
|
price: number;
|
|
@@ -80,6 +83,7 @@ export declare const weaponConfig: {
|
|
|
80
83
|
type: string;
|
|
81
84
|
category: string;
|
|
82
85
|
damage: number;
|
|
86
|
+
armorDamageReduction: number;
|
|
83
87
|
description: string;
|
|
84
88
|
specialeffect: string;
|
|
85
89
|
price: number;
|
|
@@ -87,7 +91,6 @@ export declare const weaponConfig: {
|
|
|
87
91
|
isantiair: boolean;
|
|
88
92
|
tagEffects: {
|
|
89
93
|
轻甲: number;
|
|
90
|
-
重甲: number;
|
|
91
94
|
};
|
|
92
95
|
};
|
|
93
96
|
侦察步枪: {
|
|
@@ -95,20 +98,20 @@ export declare const weaponConfig: {
|
|
|
95
98
|
type: string;
|
|
96
99
|
category: string;
|
|
97
100
|
damage: number;
|
|
101
|
+
armorDamageReduction: number;
|
|
98
102
|
description: string;
|
|
99
103
|
specialeffect: string;
|
|
100
104
|
price: number;
|
|
101
105
|
redCrystalCost: number;
|
|
102
106
|
isantiair: boolean;
|
|
103
|
-
tagEffects: {
|
|
104
|
-
重甲: number;
|
|
105
|
-
};
|
|
107
|
+
tagEffects: {};
|
|
106
108
|
};
|
|
107
109
|
零度之下: {
|
|
108
110
|
id: number;
|
|
109
111
|
type: string;
|
|
110
112
|
category: string;
|
|
111
113
|
damage: number;
|
|
114
|
+
armorDamageReduction: number;
|
|
112
115
|
description: string;
|
|
113
116
|
specialeffect: string;
|
|
114
117
|
price: number;
|
|
@@ -117,6 +120,7 @@ export declare const weaponConfig: {
|
|
|
117
120
|
tagEffects: {
|
|
118
121
|
惧寒: number;
|
|
119
122
|
灵能: number;
|
|
123
|
+
护盾: number;
|
|
120
124
|
};
|
|
121
125
|
};
|
|
122
126
|
弧焊枪: {
|
|
@@ -124,6 +128,7 @@ export declare const weaponConfig: {
|
|
|
124
128
|
type: string;
|
|
125
129
|
category: string;
|
|
126
130
|
damage: number;
|
|
131
|
+
armorDamageReduction: number;
|
|
127
132
|
description: string;
|
|
128
133
|
specialeffect: string;
|
|
129
134
|
price: number;
|
|
@@ -139,6 +144,7 @@ export declare const weaponConfig: {
|
|
|
139
144
|
type: string;
|
|
140
145
|
category: string;
|
|
141
146
|
damage: number;
|
|
147
|
+
armorDamageReduction: number;
|
|
142
148
|
description: string;
|
|
143
149
|
specialeffect: string;
|
|
144
150
|
price: number;
|
|
@@ -146,6 +152,7 @@ export declare const weaponConfig: {
|
|
|
146
152
|
isantiair: boolean;
|
|
147
153
|
tagEffects: {
|
|
148
154
|
生物: number;
|
|
155
|
+
护盾: number;
|
|
149
156
|
机械: number;
|
|
150
157
|
};
|
|
151
158
|
};
|
|
@@ -154,6 +161,7 @@ export declare const weaponConfig: {
|
|
|
154
161
|
type: string;
|
|
155
162
|
category: string;
|
|
156
163
|
damage: number;
|
|
164
|
+
armorDamageReduction: number;
|
|
157
165
|
description: string;
|
|
158
166
|
specialeffect: string;
|
|
159
167
|
price: number;
|
|
@@ -168,6 +176,7 @@ export declare const weaponConfig: {
|
|
|
168
176
|
type: string;
|
|
169
177
|
category: string;
|
|
170
178
|
damage: number;
|
|
179
|
+
armorDamageReduction: number;
|
|
171
180
|
description: string;
|
|
172
181
|
specialeffect: string;
|
|
173
182
|
price: number;
|
|
@@ -175,7 +184,6 @@ export declare const weaponConfig: {
|
|
|
175
184
|
isantiair: boolean;
|
|
176
185
|
tagEffects: {
|
|
177
186
|
护盾: number;
|
|
178
|
-
重甲: number;
|
|
179
187
|
};
|
|
180
188
|
};
|
|
181
189
|
动力钻头: {
|
|
@@ -183,6 +191,7 @@ export declare const weaponConfig: {
|
|
|
183
191
|
type: string;
|
|
184
192
|
category: string;
|
|
185
193
|
damage: number;
|
|
194
|
+
armorDamageReduction: number;
|
|
186
195
|
description: string;
|
|
187
196
|
specialeffect: string;
|
|
188
197
|
price: number;
|
|
@@ -199,6 +208,7 @@ export declare const weaponConfig: {
|
|
|
199
208
|
type: string;
|
|
200
209
|
category: string;
|
|
201
210
|
damage: number;
|
|
211
|
+
armorDamageReduction: number;
|
|
202
212
|
description: string;
|
|
203
213
|
specialeffect: string;
|
|
204
214
|
price: number;
|
|
@@ -211,6 +221,7 @@ export declare const weaponConfig: {
|
|
|
211
221
|
type: string;
|
|
212
222
|
category: string;
|
|
213
223
|
damage: number;
|
|
224
|
+
armorDamageReduction: number;
|
|
214
225
|
description: string;
|
|
215
226
|
specialeffect: string;
|
|
216
227
|
price: number;
|
|
@@ -227,6 +238,7 @@ export declare const weaponConfig: {
|
|
|
227
238
|
type: string;
|
|
228
239
|
category: string;
|
|
229
240
|
damage: number;
|
|
241
|
+
armorDamageReduction: number;
|
|
230
242
|
description: string;
|
|
231
243
|
specialeffect: string;
|
|
232
244
|
price: number;
|
|
@@ -235,7 +247,6 @@ export declare const weaponConfig: {
|
|
|
235
247
|
tagEffects: {
|
|
236
248
|
生物: number;
|
|
237
249
|
护盾: number;
|
|
238
|
-
重甲: number;
|
|
239
250
|
};
|
|
240
251
|
};
|
|
241
252
|
聚变磁轨枪: {
|
|
@@ -243,6 +254,7 @@ export declare const weaponConfig: {
|
|
|
243
254
|
type: string;
|
|
244
255
|
category: string;
|
|
245
256
|
damage: number;
|
|
257
|
+
armorDamageReduction: number;
|
|
246
258
|
description: string;
|
|
247
259
|
specialeffect: string;
|
|
248
260
|
price: number;
|
|
@@ -250,11 +262,44 @@ export declare const weaponConfig: {
|
|
|
250
262
|
isantiair: boolean;
|
|
251
263
|
tagEffects: {};
|
|
252
264
|
};
|
|
265
|
+
M134轮转机枪: {
|
|
266
|
+
id: number;
|
|
267
|
+
type: string;
|
|
268
|
+
category: string;
|
|
269
|
+
damage: number;
|
|
270
|
+
armorDamageReduction: number;
|
|
271
|
+
description: string;
|
|
272
|
+
specialeffect: string;
|
|
273
|
+
price: number;
|
|
274
|
+
redCrystalCost: number;
|
|
275
|
+
isantiair: boolean;
|
|
276
|
+
tagEffects: {
|
|
277
|
+
轻甲: number;
|
|
278
|
+
};
|
|
279
|
+
};
|
|
280
|
+
星灼灵焰炮: {
|
|
281
|
+
id: number;
|
|
282
|
+
type: string;
|
|
283
|
+
category: string;
|
|
284
|
+
damage: number;
|
|
285
|
+
armorDamageReduction: number;
|
|
286
|
+
description: string;
|
|
287
|
+
specialeffect: string;
|
|
288
|
+
price: number;
|
|
289
|
+
redCrystalCost: number;
|
|
290
|
+
isantiair: boolean;
|
|
291
|
+
tagEffects: {
|
|
292
|
+
机械: number;
|
|
293
|
+
建筑: number;
|
|
294
|
+
异形: number;
|
|
295
|
+
};
|
|
296
|
+
};
|
|
253
297
|
外星电浆: {
|
|
254
298
|
id: number;
|
|
255
299
|
type: string;
|
|
256
300
|
category: string;
|
|
257
301
|
damage: number;
|
|
302
|
+
armorDamageReduction: number;
|
|
258
303
|
description: string;
|
|
259
304
|
specialeffect: string;
|
|
260
305
|
price: number;
|
|
@@ -263,7 +308,6 @@ export declare const weaponConfig: {
|
|
|
263
308
|
tagEffects: {
|
|
264
309
|
生物: number;
|
|
265
310
|
护盾: number;
|
|
266
|
-
重甲: number;
|
|
267
311
|
};
|
|
268
312
|
};
|
|
269
313
|
'MK-4\u6FC0\u5149\u6B65\u67AA': {
|
|
@@ -271,6 +315,7 @@ export declare const weaponConfig: {
|
|
|
271
315
|
type: string;
|
|
272
316
|
category: string;
|
|
273
317
|
damage: number;
|
|
318
|
+
armorDamageReduction: number;
|
|
274
319
|
description: string;
|
|
275
320
|
specialeffect: string;
|
|
276
321
|
price: number;
|
|
@@ -285,6 +330,7 @@ export declare const weaponConfig: {
|
|
|
285
330
|
type: string;
|
|
286
331
|
category: string;
|
|
287
332
|
damage: number;
|
|
333
|
+
armorDamageReduction: number;
|
|
288
334
|
description: string;
|
|
289
335
|
specialeffect: string;
|
|
290
336
|
price: number;
|
|
@@ -300,6 +346,7 @@ export declare const weaponConfig: {
|
|
|
300
346
|
type: string;
|
|
301
347
|
category: string;
|
|
302
348
|
damage: number;
|
|
349
|
+
armorDamageReduction: number;
|
|
303
350
|
description: string;
|
|
304
351
|
specialeffect: string;
|
|
305
352
|
price: number;
|
|
@@ -314,6 +361,7 @@ export declare const weaponConfig: {
|
|
|
314
361
|
type: string;
|
|
315
362
|
category: string;
|
|
316
363
|
damage: number;
|
|
364
|
+
armorDamageReduction: number;
|
|
317
365
|
description: string;
|
|
318
366
|
specialeffect: string;
|
|
319
367
|
price: number;
|
|
@@ -326,6 +374,7 @@ export declare const weaponConfig: {
|
|
|
326
374
|
type: string;
|
|
327
375
|
category: string;
|
|
328
376
|
damage: number;
|
|
377
|
+
armorDamageReduction: number;
|
|
329
378
|
description: string;
|
|
330
379
|
specialeffect: string;
|
|
331
380
|
price: number;
|
|
@@ -340,6 +389,7 @@ export declare const weaponConfig: {
|
|
|
340
389
|
type: string;
|
|
341
390
|
category: string;
|
|
342
391
|
damage: number;
|
|
392
|
+
armorDamageReduction: number;
|
|
343
393
|
description: string;
|
|
344
394
|
specialeffect: string;
|
|
345
395
|
price: number;
|
|
@@ -354,6 +404,7 @@ export declare const weaponConfig: {
|
|
|
354
404
|
type: string;
|
|
355
405
|
category: string;
|
|
356
406
|
damage: number;
|
|
407
|
+
armorDamageReduction: number;
|
|
357
408
|
description: string;
|
|
358
409
|
specialeffect: string;
|
|
359
410
|
price: number;
|
|
@@ -409,12 +460,6 @@ export declare const modConfig: {
|
|
|
409
460
|
exclusiveTo: string;
|
|
410
461
|
isExclusive: boolean;
|
|
411
462
|
};
|
|
412
|
-
护盾崩解核心: {
|
|
413
|
-
cost: number;
|
|
414
|
-
effect: string;
|
|
415
|
-
exclusiveTo: string;
|
|
416
|
-
isExclusive: boolean;
|
|
417
|
-
};
|
|
418
463
|
金刚石瞄准镜: {
|
|
419
464
|
cost: number;
|
|
420
465
|
effect: string;
|