First iteration over items

This commit is contained in:
2025-11-06 23:30:37 +01:00
parent 6b883f8126
commit 4a9f026a2a
109 changed files with 1535 additions and 715 deletions
+9
View File
@@ -40,6 +40,15 @@ export const COLORS = Object.freeze({
}
});
/**
* Simplified Spell Colors object for form choices (label-only format)
*/
export const COLORS_CHOICES = Object.freeze(
Object.fromEntries(
Object.entries(COLORS).map(([key, value]) => [key, value.label])
)
);
/**
* Spell ranges (legacy - to be replaced with Prism system)
*/