Added first duel stats

This commit is contained in:
2025-09-03 22:27:23 +02:00
parent cecea648d8
commit 0a99fa0ac0
7 changed files with 108 additions and 2 deletions

View File

@@ -385,3 +385,9 @@ export const murderMysteryStatsSchema = z.looseObject({
coins_pickedup_MURDER_INFECTION: z.number().default(0),
...murderMysteryModeStats()
})
export const buildBattleStatsSchema = z.looseObject({
wins: z.number().default(0),
score: z.number().default(0),
coins: z.number().default(0)
})