import type { MonsterStats } from '$lib/types'; | |
export interface Monster { | |
id?: number; | |
name: string; | |
imageUrl: string; | |
imageData?: string; // Base64 encoded image with transparency | |
imageCaption: string; | |
concept: string; | |
imagePrompt: string; | |
stats?: MonsterStats; // JSON stats object | |
createdAt: Date; | |
} |