Updated wool games stats
This commit is contained in:
@@ -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()
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user