classe et espece

This commit is contained in:
2026-02-16 18:21:56 +04:00
parent 93747cbc93
commit 551da4f726
38 changed files with 175 additions and 106 deletions

View File

@@ -27,6 +27,9 @@ const classes = defineCollection({
.object({
title: z.string(),
description: z.string(),
encre: z
.enum(["martial", "arcane", "divin", "primal", "hybride"])
.default("martial"),
})
.passthrough(),
});
@@ -37,6 +40,9 @@ const especes = defineCollection({
.object({
title: z.string(),
description: z.string(),
spectre: z
.enum(["solaire", "elementaire", "terrestre", "sylvestre", "ombre"])
.default("terrestre"),
})
.passthrough(),
});