File size: 322 Bytes
d9c705e
 
ececfe6
 
 
 
d9c705e
ececfe6
 
 
d9c705e
ececfe6
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}