File size: 1,268 Bytes
7fab18f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | import { Dynasty, HanfuOption, CustomizationOption } from './types';
export const DYNASTY_OPTIONS: HanfuOption[] = [
{
id: Dynasty.Tang,
name: "大唐盛世 (Tang)",
description: "雍容华贵,齐胸衫裙,色彩艳丽。",
imagePlaceholder: "https://picsum.photos/400/600?random=1"
},
{
id: Dynasty.Song,
name: "雅宋清韵 (Song)",
description: "清雅婉约,褙子宋裤,简约自然。",
imagePlaceholder: "https://picsum.photos/400/600?random=2"
},
{
id: Dynasty.Ming,
name: "端庄大明 (Ming)",
description: "端庄大气,马面裙,袄裙,织金工艺。",
imagePlaceholder: "https://picsum.photos/400/600?random=3"
}
];
export const CUSTOMIZATION_OPTIONS: CustomizationOption[] = [
{ id: 'hairpin', label: '金步摇 (Gold Hairpin)', promptAddon: 'wearing a traditional Chinese gold hairpin (Buyao) on hair' },
{ id: 'makeup', label: '花钿妆 (Huadian Makeup)', promptAddon: 'wearing traditional Chinese Huadian makeup styles with flower mark on forehead' },
{ id: 'fan', label: '团扇 (Round Fan)', promptAddon: 'holding a traditional Chinese silk round fan' },
{ id: 'lantern', label: '宫灯 (Lantern)', promptAddon: 'holding a glowing traditional paper lantern' }
];
|