Added first mm stats

This commit is contained in:
2025-09-02 20:17:26 +02:00
parent e949738ade
commit d3b04eec9a
6 changed files with 101 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
import { title } from "process"
import z, { object } from "zod"
import z from "zod"
function bedwarsModeStats() {
const ids = [
@@ -331,3 +330,11 @@ export const duelsStatsSchema = z.looseObject({
...duelsModeStats().bestWs,
...duelsModeStats().bridge
})
export const murderMysteryStatsSchema = z.looseObject({
kills: z.number().default(0),
wins: z.number().default(0),
coins: z.number().default(0),
kills_as_murderer: z.number().default(0),
deaths: z.number().default(0)
})