Data Format
Each pixel art piece is a simple JS object — human-readable, AI-generatable
const wizard = {
name: 'Wizard',
width: 24, height: 24,
scale: 6,
palette: {
'.': 'transparent',
'H': '#2a1a4e', // hat
'S': '#f5d0a0', // skin
'R': '#6a3cbf', // robe
'G': '#ffd700', // gold
},
pixels: [
'........HHHH............',
'......HHHHHHHH..........',
'....HHHHHHHHHHH.........',
// ... each char = 1 pixel
]
};