Added first mm stats
This commit is contained in:
@@ -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)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user