koishi-plugin-ggcevo-game 1.6.14 → 1.6.16
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 +1 -1
- package/lib/database.d.ts +17 -0
- package/lib/index.js +536 -195
- package/lib/utils.d.ts +6 -0
- package/lib/weapons.d.ts +27 -0
- package/package.json +2 -2
|
@@ -240,7 +240,7 @@ export declare const BattleEffectProcessor: {
|
|
|
240
240
|
} | null;
|
|
241
241
|
isHighStackHeal: boolean;
|
|
242
242
|
} | null;
|
|
243
|
-
handleCorrosiveBile: (targetBoss: any, activeBosses: any[]) => {
|
|
243
|
+
handleCorrosiveBile: (targetBoss: any, activeBosses: any[], isHighStackHeal?: boolean) => {
|
|
244
244
|
messages: string[];
|
|
245
245
|
targetUpdates: {
|
|
246
246
|
name: string;
|
package/lib/database.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ declare module 'koishi' {
|
|
|
25
25
|
ggcevo_pk_protection: PKProtection;
|
|
26
26
|
ggcevo_spaceship: spaceship;
|
|
27
27
|
ggcevo_explore: explore;
|
|
28
|
+
ggcevo_global_stats: GlobalStats;
|
|
29
|
+
ggcevo_guess: guess;
|
|
28
30
|
}
|
|
29
31
|
}
|
|
30
32
|
export interface Backpack {
|
|
@@ -173,6 +175,7 @@ export interface Warehouse {
|
|
|
173
175
|
itemId: number;
|
|
174
176
|
quantity: number;
|
|
175
177
|
bonus: number;
|
|
178
|
+
upgrades: number;
|
|
176
179
|
}
|
|
177
180
|
export interface TechProgress {
|
|
178
181
|
handle: string;
|
|
@@ -222,3 +225,17 @@ export interface explore {
|
|
|
222
225
|
plunderbonus: number;
|
|
223
226
|
status: string;
|
|
224
227
|
}
|
|
228
|
+
export interface GlobalStats {
|
|
229
|
+
groupId: string;
|
|
230
|
+
updatedAt: Date;
|
|
231
|
+
rankdate: Date;
|
|
232
|
+
}
|
|
233
|
+
export interface guess {
|
|
234
|
+
handle: string;
|
|
235
|
+
name: string;
|
|
236
|
+
itemId: number;
|
|
237
|
+
guessContent: string;
|
|
238
|
+
amount: number;
|
|
239
|
+
wins: number;
|
|
240
|
+
createdAt: Date;
|
|
241
|
+
}
|