Added mega walls card

This commit is contained in:
2025-09-07 11:36:19 +02:00
parent 4612222207
commit 33d02113da
6 changed files with 195 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import {
bedwarsStatsSchema,
buildBattleStatsSchema,
duelsStatsSchema,
megawallsStats,
murderMysteryStatsSchema,
pitStats,
skywarsStatsSchema,
@@ -30,7 +31,13 @@ export const playerSchema = z.looseObject({
BuildBattle: buildBattleStatsSchema.optional(),
UHC: uhcSchema.optional(),
Pit: pitStats.optional(),
TNTGames: tntGamesStatsSchema.optional()
TNTGames: tntGamesStatsSchema.optional(),
Walls3: megawallsStats.optional()
}).transform(({ Walls3, ...rest }) => {
return {
MegaWalls: Walls3,
...rest
}
}).optional(),
quests: z.record(
z.string(),