export const DEFAULT_AGE = 35 export const MIN_AGE = 18 export const MAX_AGE = 118 export const DEFAULT_WEIGHT = 70 export const MIN_WEIGHT = 30 export const MAX_WEIGHT = 200 // I guess it could be 650kg too if I look at Wikipedia, but.. yeah export const hairStyles = [ 'Bangs', 'Beehive', 'Bob', 'Bouffant', 'Bowl', 'Braids', 'Bun', 'Buzz cut', 'Chignon', 'Coily', 'Comb over', 'Cornrows', 'Crew cut', 'Croydon facelift', 'Curly', 'Dreadlocks', 'Eton crop', 'Fade', 'Fauxhawk', 'Flow', 'Ivy League', 'Lob', 'Mohawk', 'Mop-top', 'Mullet', 'Pixie', 'Pompadour', 'Undercut', ] as const export type HairStyle = typeof hairStyles[number] export const hairColors = [ 'very light blond', 'light blond', 'blond', 'dark blond', 'light brown', 'chesnut', 'medium brown', 'dark brown', 'orange', 'red', 'red blond', 'gray', 'white', 'auburn', 'titian', 'blue', 'black', 'purple' ] export type HairColor = typeof hairColors[number] export const generationMode = [ "characters", "assets" ] as const export type GenerationMode = typeof generationMode[number] export const characterGenders = [ "male", "female", "non-binary", ] as const export type CharacterGender = typeof characterGenders[number] export const characterPoses = [ "side-on pose", "isometric view", "front portrait", "profile pose", "standing, full body, frontal view, arms, legs, feet", "standing, full body, back view, arms, legs, feet, back", ] as const export type CharacterPose = typeof characterPoses[number] export const characterExpressions = [ "neutral", "smiling", "happy", "angry", ] as const export type CharacterExpression = typeof characterExpressions[number] export const photoshootModes = [ "realistic photo", "gopro webcam photo", "instagram influencer" ] export type PhotoshootMode = typeof photoshootModes[number]