koishi-plugin-ggcevo-game 1.4.32 → 1.4.34
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 +418 -0
- package/lib/boss/attackhandling.d.ts +7 -11
- package/lib/boss/boss.d.ts +8 -175
- package/lib/boss/passive.d.ts +207 -269
- package/lib/boss/passivehandler.d.ts +52 -34
- package/lib/database.d.ts +5 -4
- package/lib/index.js +1984 -1982
- package/lib/tasks.d.ts +40 -40
- package/package.json +1 -1
package/lib/database.d.ts
CHANGED
|
@@ -123,16 +123,17 @@ export interface equipment {
|
|
|
123
123
|
}
|
|
124
124
|
export interface Boss {
|
|
125
125
|
name: string;
|
|
126
|
+
groupId: number;
|
|
126
127
|
type: string;
|
|
127
128
|
HP: number;
|
|
128
129
|
tags: string[];
|
|
129
130
|
skills: string[];
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
skillStacks: number;
|
|
132
|
+
statusLayers: number;
|
|
133
|
+
radiationLayers: number;
|
|
134
|
+
coldLayers: number;
|
|
133
135
|
energy: number;
|
|
134
136
|
lastWeaponName: string;
|
|
135
|
-
groupId: number;
|
|
136
137
|
isActive: boolean;
|
|
137
138
|
respawnTime: Date;
|
|
138
139
|
}
|