Updated wool games stats

This commit is contained in:
2025-09-10 20:00:04 +02:00
parent 701bf1c548
commit e55a165986
2 changed files with 34 additions and 2 deletions

View File

@@ -724,4 +724,23 @@ export const copsAndCrimsStatsSchema = z.looseObject({
...copsAndCrimsGunUpgrades()
})
export const woolGamesStatsSchema = z.looseObject({})
export const woolGamesStatsSchema = z.looseObject({
capture_the_wool: z.looseObject({
stats: z.looseObject({
kills: z.number().default(0),
participated_wins: z.number().default(0)
}).optional()
}).optional(),
sheep_wars: z.looseObject({
stats: z.looseObject({
kills: z.number().default(0),
wins: z.number().default(0)
}).optional()
}).optional(),
wool_wars: z.looseObject({
stats: z.looseObject({
kills: z.number().default(0),
wins: z.number().default(0)
}).optional()
}).optional()
})