Add character notes and more debugging for mailserver (help me !!!)

This commit is contained in:
Clément Pons
2025-04-22 17:40:39 +02:00
parent 32439b41f6
commit a30f394ef7
8 changed files with 26 additions and 7 deletions

View File

@@ -19,6 +19,7 @@ export type Progression = {
spells?: string[]; //Spell ID
modifiers: Partial<Record<MainStat, number>>;
aspect?: string;
notes: string;
};
export type Character = {
id: number;
@@ -148,4 +149,6 @@ export type CompiledCharacter = {
abilities: Partial<Record<Ability, number>>;
level: number;
features: Record<Category, string[]>; //Currently: List of training option as text. TODO: Update to a more complex structure later
notes: string;
};