piclets / src /lib /db /schema.ts
Fraser's picture
scanner DB update
d9c705e
raw
history blame
322 Bytes
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;
}