File size: 1,932 Bytes
660842c 4905b6b 660842c 4905b6b 660842c |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
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]
|