Package update and TrainingViewer rendering fixes

This commit is contained in:
2025-06-30 08:22:58 +02:00
parent d5851499cd
commit c33bd95b81
10 changed files with 1180 additions and 591 deletions

View File

@@ -1,5 +1,4 @@
import { z, type ZodRawShape } from "zod";
import { characterTable } from "~/db/schema";
import { z, type ZodRawShape } from "zod/v4";
export const MAIN_STATS = ["strength","dexterity","constitution","intelligence","curiosity","charisma","psyche"] as const; export type MainStat = typeof MAIN_STATS[number];
export const ABILITIES = ["athletics","acrobatics","intimidation","sleightofhand","stealth","survival","investigation","history","religion","arcana","understanding","perception","performance","medecine","persuasion","animalhandling","deception"] as const; export type Ability = typeof ABILITIES[number];