Updated pixel party stats
This commit is contained in:
@@ -913,9 +913,28 @@ function arcadeModeWins() {
|
||||
}
|
||||
|
||||
export const arcadeStatsSchema = z.object({
|
||||
miniwalls_activeKit: z.string().optional(),
|
||||
wither_kills_mini_walls: z.number().default(0),
|
||||
kills_mini_walls: z.number().default(0),
|
||||
final_kills_mini_walls: z.number().default(0),
|
||||
deaths_mini_walls: z.number().default(0),
|
||||
arrows_hit_mini_walls: z.number().default(0),
|
||||
arrows_shot_mini_walls: z.number().default(0),
|
||||
coins: z.number().default(0),
|
||||
pixel_party: z.object({
|
||||
wins: z.number().default(0)
|
||||
wins: z.number().default(0),
|
||||
games_played: z.number().default(0),
|
||||
rounds_completed: z.number().default(0),
|
||||
highest_round: z.number().default(0),
|
||||
power_ups_collected: z.number().default(0),
|
||||
wins_normal: z.number().default(0),
|
||||
games_played_normal: z.number().default(0),
|
||||
rounds_completed_normal: z.number().default(0),
|
||||
power_ups_collected_normal: z.number().default(0),
|
||||
wins_hyper: z.number().default(0),
|
||||
games_played_hyper: z.number().default(0),
|
||||
rounds_completed_hyper: z.number().default(0),
|
||||
power_ups_collected_hyper: z.number().default(0)
|
||||
}).optional(),
|
||||
dropper: z.object({
|
||||
wins: z.number().default(0)
|
||||
|
||||
Reference in New Issue
Block a user