add new content end game
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 2m2s

This commit is contained in:
2025-08-15 21:29:41 +07:00
parent f40a403ea2
commit 55f1415e2f
51 changed files with 67356 additions and 2765 deletions

View File

@@ -106,6 +106,17 @@ export const cEConfigStoreSchema = z.object({
monsters: z.array(z.array(monsterStoreSchema)),
});
export const pEAKConfigStoreSchema = z.object({
event_id: z.number(),
challenge_id: z.number(),
buff_id: z.number(),
boss_mode: z.string(),
blessings: z.array(battleBuffStoreSchema),
cycle_count: z.number(),
stage_id: z.number(),
monsters: z.array(z.array(monsterStoreSchema)),
});
export const micsSchema = z.object({
avatars: z.record(avatarStoreSchema),
battle_type: z.string(),
@@ -113,4 +124,5 @@ export const micsSchema = z.object({
pf_config: pFConfigStoreSchema,
as_config: aSConfigStoreSchema,
ce_config: cEConfigStoreSchema,
peak_config: pEAKConfigStoreSchema,
});