added wool games stats card
This commit is contained in:
@@ -9,7 +9,8 @@ import {
|
||||
pitStats,
|
||||
skywarsStatsSchema,
|
||||
tntGamesStatsSchema,
|
||||
uhcSchema
|
||||
uhcSchema,
|
||||
woolGamesStatsSchema
|
||||
} from "./stats"
|
||||
|
||||
export const playerSchema = z.looseObject({
|
||||
@@ -34,7 +35,8 @@ export const playerSchema = z.looseObject({
|
||||
Pit: pitStats.optional(),
|
||||
TNTGames: tntGamesStatsSchema.optional(),
|
||||
Walls3: megawallsStats.optional(),
|
||||
MCGO: copsAndCrimsStatsSchema.optional()
|
||||
MCGO: copsAndCrimsStatsSchema.optional(),
|
||||
WoolGames: woolGamesStatsSchema.optional()
|
||||
}).transform(({ Walls3, MCGO, ...rest }) => {
|
||||
return {
|
||||
MegaWalls: Walls3,
|
||||
|
||||
@@ -723,3 +723,5 @@ export const copsAndCrimsStatsSchema = z.looseObject({
|
||||
sniper_charge_bonus: z.number().default(0),
|
||||
...copsAndCrimsGunUpgrades()
|
||||
})
|
||||
|
||||
export const woolGamesStatsSchema = z.looseObject({})
|
||||
|
||||
Reference in New Issue
Block a user