Added wool games mode stats
This commit is contained in:
@@ -735,19 +735,40 @@ export const woolGamesStatsSchema = z.looseObject({
|
||||
capture_the_wool: z.looseObject({
|
||||
stats: z.looseObject({
|
||||
kills: z.number().default(0),
|
||||
participated_wins: z.number().default(0)
|
||||
assits: z.number().default(0),
|
||||
deaths: z.number().default(0),
|
||||
participated_wins: z.number().default(0),
|
||||
participated_losses: z.number().default(0),
|
||||
fastest_win: z.number().default(0),
|
||||
longest_game: z.number().default(0),
|
||||
wools_stolen: z.number().default(0),
|
||||
wools_captured: z.number().default(0),
|
||||
fastest_wool_capture: z.number().default(0),
|
||||
gold_earned: z.number().default(0),
|
||||
gold_spent: z.number().default(0)
|
||||
}).optional()
|
||||
}).optional(),
|
||||
sheep_wars: z.looseObject({
|
||||
stats: z.looseObject({
|
||||
kills: z.number().default(0),
|
||||
wins: z.number().default(0)
|
||||
deaths: z.number().default(0),
|
||||
wins: z.number().default(0),
|
||||
losses: z.number().default(0),
|
||||
sheep_thrown: z.number().default(0),
|
||||
damage_dealt: z.number().default(0)
|
||||
}).optional()
|
||||
}).optional(),
|
||||
wool_wars: z.looseObject({
|
||||
selected_class: z.string().optional(),
|
||||
stats: z.looseObject({
|
||||
kills: z.number().default(0),
|
||||
wins: z.number().default(0)
|
||||
assits: z.number().default(0),
|
||||
deaths: z.number().default(0),
|
||||
wins: z.number().default(0),
|
||||
losses: z.number().default(0),
|
||||
wool_placed: z.number().default(0),
|
||||
blocks_broken: z.number().default(0),
|
||||
powerups_gotten: z.number().default(0)
|
||||
}).optional()
|
||||
}).optional()
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user