koishi-plugin-ggcevo-game 1.4.50 → 1.4.51
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 +43 -1
- package/lib/weapons.d.ts +42 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -235,7 +235,7 @@ var weaponConfig = {
|
|
|
235
235
|
id: 14,
|
|
236
236
|
type: "能量武器",
|
|
237
237
|
category: "能量武器",
|
|
238
|
-
damage:
|
|
238
|
+
damage: 35,
|
|
239
239
|
description: "一种原型能量武器,能够发射强大的脉冲",
|
|
240
240
|
specialeffect: "攻击使目标的技能层数减少2层",
|
|
241
241
|
price: 1500,
|
|
@@ -243,6 +243,48 @@ var weaponConfig = {
|
|
|
243
243
|
isantiair: true,
|
|
244
244
|
tagEffects: {}
|
|
245
245
|
},
|
|
246
|
+
"MK79榴弹发射器": {
|
|
247
|
+
id: 15,
|
|
248
|
+
type: "热能武器",
|
|
249
|
+
category: "热能武器",
|
|
250
|
+
damage: 50,
|
|
251
|
+
description: "发射非常坚固的专属榴弹,对具有坚固防御的目标几乎没有效果",
|
|
252
|
+
specialeffect: "",
|
|
253
|
+
price: 2e3,
|
|
254
|
+
redCrystalCost: 20,
|
|
255
|
+
isantiair: true,
|
|
256
|
+
tagEffects: {
|
|
257
|
+
"重甲": 1.5,
|
|
258
|
+
"轻甲": 0.8,
|
|
259
|
+
"护盾": 0.8
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"EC13电浆步枪": {
|
|
263
|
+
id: 16,
|
|
264
|
+
type: "能量武器",
|
|
265
|
+
category: "能量武器",
|
|
266
|
+
damage: 64,
|
|
267
|
+
description: "用于解决高生命值目标的次时代武器",
|
|
268
|
+
specialeffect: "",
|
|
269
|
+
price: 1750,
|
|
270
|
+
redCrystalCost: 20,
|
|
271
|
+
isantiair: true,
|
|
272
|
+
tagEffects: {
|
|
273
|
+
"护盾": 0.5
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"聚变磁轨枪": {
|
|
277
|
+
id: 17,
|
|
278
|
+
type: "能量武器",
|
|
279
|
+
category: "能量武器",
|
|
280
|
+
damage: 70,
|
|
281
|
+
description: "一种原型能量武器,能够发射强大的脉冲",
|
|
282
|
+
specialeffect: "",
|
|
283
|
+
price: 1550,
|
|
284
|
+
redCrystalCost: 20,
|
|
285
|
+
isantiair: true,
|
|
286
|
+
tagEffects: {}
|
|
287
|
+
},
|
|
246
288
|
"外星电浆": {
|
|
247
289
|
id: 101,
|
|
248
290
|
type: "能量武器",
|
package/lib/weapons.d.ts
CHANGED
|
@@ -208,6 +208,48 @@ export declare const weaponConfig: {
|
|
|
208
208
|
isantiair: boolean;
|
|
209
209
|
tagEffects: {};
|
|
210
210
|
};
|
|
211
|
+
MK79榴弹发射器: {
|
|
212
|
+
id: number;
|
|
213
|
+
type: string;
|
|
214
|
+
category: string;
|
|
215
|
+
damage: number;
|
|
216
|
+
description: string;
|
|
217
|
+
specialeffect: string;
|
|
218
|
+
price: number;
|
|
219
|
+
redCrystalCost: number;
|
|
220
|
+
isantiair: boolean;
|
|
221
|
+
tagEffects: {
|
|
222
|
+
重甲: number;
|
|
223
|
+
轻甲: number;
|
|
224
|
+
护盾: number;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
EC13电浆步枪: {
|
|
228
|
+
id: number;
|
|
229
|
+
type: string;
|
|
230
|
+
category: string;
|
|
231
|
+
damage: number;
|
|
232
|
+
description: string;
|
|
233
|
+
specialeffect: string;
|
|
234
|
+
price: number;
|
|
235
|
+
redCrystalCost: number;
|
|
236
|
+
isantiair: boolean;
|
|
237
|
+
tagEffects: {
|
|
238
|
+
护盾: number;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
聚变磁轨枪: {
|
|
242
|
+
id: number;
|
|
243
|
+
type: string;
|
|
244
|
+
category: string;
|
|
245
|
+
damage: number;
|
|
246
|
+
description: string;
|
|
247
|
+
specialeffect: string;
|
|
248
|
+
price: number;
|
|
249
|
+
redCrystalCost: number;
|
|
250
|
+
isantiair: boolean;
|
|
251
|
+
tagEffects: {};
|
|
252
|
+
};
|
|
211
253
|
外星电浆: {
|
|
212
254
|
id: number;
|
|
213
255
|
type: string;
|