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/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
- Skillcountpoints: number;
131
- Vulnerability: number;
132
- freezing: number;
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
  }