Hello, I don’t understand what is wrong here. Can anyone help?
I think the ‘goto’ command has to go under the option instead of in the same line
I just tried it, but that doesn’t seem to be the problem here. Thanks anyway!
is this a choice inside choice or a separate choice with 3 options?
if it is separate choice with 3 options then there is unnecesary bracket on line 4723
The goto command has to be on a separate line by itself.
There are several choices. basically I previously asked the reader to choose between 4 races (I used gain race_orc… etc) and I am now trying to add the different customisation options.
NARRATOR
Do you want to customize your character?
choice
“Yes, I want to customize.” {
if (race_orc){ custom orc
} if (race_tiefling) { custom tielfing
}
}
etc
then I wrote
“No I don’t want to customize;” {
goto end_chapter
}
I just don’t get what’s wrong
this doesn’t seem to solve my problem though
the if seem kinda strange you have 2 if there instead of else
also what is custom tielfing ? I am not sure this is a command…
is it if /else inside if/ else?
oh sorry it’s not a command I just didn’t want to copy paste the whole custom choices.
I wrote if for the 1st three and else for the last one, and made sure no if were inside the others if that makes sense
Try removing the whole sentence ‘goto the_adventure_begins’ and type ‘continue’ instead. Also remove the label below it and see if it works?
it works, but the unexpected string error is still there
Can you show me the whole choice string please?
ok, it is going to be big
this is not how if else works
it should look
if (condition1) {
} elif (condition2) {
} elif (condition3) {
} else {
}
oh, oops…
I’ve now an unexpected ELIF: elif error
(1)
NARRATOR
Do you want to customize your character?
choice
“Yes, I want to customize.” {
if (race_orc){
label boy_custom_1
@KARAM spot 2.400 170 -520 and KARAM faces right and KARAM starts idle
NARRATOR
What do you want to change?
choice
“Hair” {
goto boy_hair_1
} “Eyes” {
goto boy_eyes_1
} “Eyebrows” {
goto boy_brows_1
} “Face Shape”{
goto boy_face_1
} “Nose” {
goto boy_nose_1
} “Mouth” {
goto boy_mouth_1
} “This is perfect!” {
goto boy_end_1
}
####################### EYEBROWs #######################
label boy_brows_1
NARRATOR
Eyebrow shapes.
choice [shouldPaginate: YES]
“Arched Medium” {
@KARAM changes eyebrows into Arched Medium
goto boy_brows_1
}“Generic” {
@KARAM changes eyebrows into Male Generic
goto boy_brows_1
}“Round Medium” {
@KARAM changes eyebrows into Round Medium
goto boy_brows_1
}“Round Soft” {
@KARAM changes eyebrows into Round Soft
goto boy_brows_1
} “Done”{
goto boy_custom_1
}
“Round Thick” {
@KARAM changes eyebrows into Round Thick
goto boy_brows_1
}“Straight Medium” {
@KARAM changes eyebrows into Straight Medium
goto boy_brows_1
}“Arched Bushy” {
@KARAM changes eyebrows into Arched Bushy
goto boy_brows_1
}“Round Thin” {
@KARAM changes eyebrows into Round Thin
goto boy_brows_1
} “Done”{
goto boy_custom_1
}
“Furrowed Straight”{
@KARAM changes eyebrows into Furrowed Straight S
goto boy_brows_1
}“Furrowed Raised”{
@KARAM changes eyebrows into Furrowed Raised S
goto boy_brows_1
}“Straight Medium Scar”{
@KARAM changes eyebrows into Straight Medium Scar
goto boy_brows_1
} “Done”{
goto boy_custom_1
}
####################### FACE SHAPE #######################
label boy_face_1
NARRATOR
Face shapes.
choice
“Clean Shaven” {
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done” {
goto boy_custom_1
}
label boy_face_clean_1
NARRATOR
Face shapes.
choice [shouldPaginate: YES]
“Soft Diamond” {
@KARAM changes face into Diamond Soft
goto boy_face_clean_1
} “Defined Diamond” {
@KARAM changes face into Diamond Defined
goto boy_face_clean_1
} “Chiseled” {
@KARAM changes face into Chiseled Angular
goto boy_face_clean_1
} “Generic” {
@KARAM changes face into Male Generic
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Round” {
@KARAM changes face into Round Soft
goto boy_face_clean_1
} “Square Jaw” {
@KARAM changes face into Square Jaw
goto boy_face_clean_1
} “Square Defined” {
@KARAM changes face into Square Defined
goto boy_face_clean_1
} “Triangle” {
@KARAM changes face into Triangle Chiseled
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Mature Square” {
@KARAM changes face into Square Jaw Mature
goto boy_face_clean_1
} “Broad Cheeks” {
@KARAM changes face into Round Broad Cheeks
goto boy_face_clean_1
} “Triangle Defined Chin” {
@KARAM changes face into Triangle Defined Chin
goto boy_face_clean_1
} “Pointed Ear” {
@KARAM changes face into Triangle Defined Chin Pointed Ear Skin
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Square Sculpted” {
@KARAM changes face into Square Sculpted
goto boy_face_clean_1
} “Cleft Chin” {
@KARAM changes face into Square Sculpted Cleft Chin
goto boy_face_clean_1
} “Triangle Sculpted”{
@KARAM changes face into Triangle Sculpted
goto boy_face_clean_1
} “Square Youth” {
@KARAM changes face into Square Youthful
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Square Aged” {
@KARAM changes face into Square Aged
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
} “Facial Hair” {
goto boy_face_beards_1
}
label boy_face_beards_1
NARRATOR
Face shapes.
choice [shouldPaginate: YES]
“Chiseled Stubble” {
@KARAM changes face into Chiseled Angular Stubble
goto boy_face_beards_1
} “Chiseled Shaved”{
@KARAM changes face into Chiseled Square Stubble Shaved
goto boy_face_beards_1
} “Long Jaw Stubble”{
@KARAM changes face into Square Long Jaw Stubble
goto boy_face_beards_1
} “Long Jaw Shadow” {
@KARAM changes face into Square Long Jaw Shadow
goto boy_face_beards_1
} “Clean Shaved” {
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
}
“Roundcheek Stubble” {
@KARAM changes face into Square Jaw Roundcheek Stubble
goto boy_face_beards_1
} “Scruffy Beard” {
@KARAM changes face into Triangle Chiseled Scruffy Beard
goto boy_face_beards_1
} “Clean Shaved” {
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
}
####################### EYE SHAPE #######################
label boy_eyes_1
NARRATOR
Eye shapes.
choice [shouldPaginate: YES]
“Deepset Downturned”{
@KARAM changes eyes into Deepset Downturned
goto boy_eyes_1
} “Deepset Heavy” {
@KARAM changes eyes into Deepset Heavy Lid
goto boy_eyes_1
} “Deepset Downturned Lid” {
@KARAM changes eyes into Deepset Downturned Lidded
goto boy_eyes_1
} “Deepset Mature” {
@KARAM changes eyes into Deepset Sloping Mature
goto boy_eyes_1
}“Done”{
goto boy_custom_1
}
“Generic” {
@KARAM changes eyes into Male Generic
goto boy_eyes_1
} “Slender” {
@KARAM changes eyes into Monolid Slender
goto boy_eyes_1
} “Oval Wide” {
@KARAM changes eyes into Oval Wide
goto boy_eyes_1
} “Sloping Heavy Lid” {
@KARAM changes eyes into Sloping Heavy Lid
goto boy_eyes_1
}“Done”{
goto boy_custom_1
}
“Deep Sunken” {
@KARAM changes eyes into Male Deep Sunken
goto boy_eyes_1
} “Narrow Almond Smiling” {
@KARAM changes eyes into Narrow Almond Deep Smiling
goto boy_eyes_1
} “Narrow Almond Sunken” {
@KARAM changes eyes into Narrow Almond Deep Sunken
goto boy_eyes_1
} “Hooded Almond” {
@KARAM changes eyes into Hooded Almond
goto boy_eyes_1
}“Done”{
goto boy_custom_1
}
“Almond Deep” {
@KARAM changes eyes into Wide Almond Deep
goto boy_eyes_1
} “Almond Deep Eyebags” {
@KARAM changes eyes into Wide Almond Deep Eyebags
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
####################### MOUTH SHAPE #######################
label boy_mouth_1
NARRATOR
Mouth shapes.
choice [shouldPaginate: YES]
“Medium Straight” {
@KARAM changes mouth into Medium Straight Natural
goto boy_mouth_1
}“Thin Heart” {
@KARAM changes mouth into Thin Heart
goto boy_mouth_1
}“Small Heart” {
@KARAM changes mouth into Small Heart
goto boy_mouth_1
}“Medium Heart” {
@KARAM changes mouth into Medium Heart
goto boy_mouth_1
}“Done”{
goto boy_custom_1
}
“Full Heart” {
@KARAM changes mouth into Full Heart Natural
goto boy_mouth_1
}“Large Heart” {
@KARAM changes mouth into Full Heart Large
goto boy_mouth_1
}“Full Flat Top” {
@KARAM changes mouth into Full Flat Top Pouty
goto boy_mouth_1
}“Full Lower Lip” {
@KARAM changes mouth into Full Lower Lip Sharp
goto boy_mouth_1
}“Done”{
goto boy_custom_1
}
####################### NOSE SHAPE #######################
label boy_nose_1
NARRATOR
Nose shapes.
choice [shouldPaginate: YES]
“Button Wide” {
@KARAM changes nose into Button Wide
goto boy_nose_1
} “Button Round” {
@KARAM changes nose into Button Round
goto boy_nose_1
} “Grecian Narrow” {
@KARAM changes nose into Grecian Narrow
goto boy_nose_1
} “Grecian Hooked”{
@KARAM changes nose into Hooked Grecian
goto boy_nose_1
} “Grecian Round” {
@KARAM changes nose into Grecian Round
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Round Wide” {
@KARAM changes nose into Round Wide
goto boy_nose_1
} “Generic” {
@KARAM changes nose into Male Generic
goto boy_nose_1
} “Straight Narrow” {
@KARAM changes nose into Straight Narrow
goto boy_nose_1
} “Bulbous Downturned” {
@KARAM changes nose into Bulbous Downturned
goto boy_nose_1
} “Round Flared Downturned” {
@KARAM changes nose into Round Flared Downturned
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Straight Flat” {
@KARAM changes nose into Straight Flat
goto boy_nose_1
} “Straight Pointed” {
@KARAM changes nose into Straight Pointed
goto boy_nose_1
} “Roman Straight Broad” {
@KARAM changes nose into Roman Straight Broad
goto boy_nose_1
} “Done”{
goto boy_custom_1
} “Aquiline Medium” {
@KARAM changes nose into Aquiline Medium
goto boy_nose_1
}
####################### HAIR STYLE #######################
label boy_hair_1
NARRATOR
All hairstyles.
choice
“Short Hair” {
goto boy_hair_short_1
} “Medium Hair” {
goto boy_hair_medium_1
} “Long Hair” {
goto boy_hair_long_1
} “Done” {
goto boy_custom_1
}
label boy_hair_short_1
NARRATOR
Short hairstyles.
choice [shouldPaginate: YES]
“Military Fade” {
@KARAM changes hair into Military Fade Cut
goto boy_hair_short_1
} “Slicked Back” {
@KARAM changes hair into Slicked Back Solid
goto boy_hair_short_1
} “Curly Fade” {
@KARAM changes hair into Short Curly Fade
goto boy_hair_short_1
} “Curly Mohawk” {
@KARAM changes hair into Curly Mohawk
goto boy_hair_short_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Crew Cut” {
@KARAM changes hair into Crew Cut
goto boy_hair_short_1
} “Conservative Cut” {
@KARAM changes hair into Conservative Cut
goto boy_hair_short_1
} “Undercut Short” {
@KARAM changes hair into Undercut Short Straight Texture
goto boy_hair_short_1
} “Receding Short” {
@KARAM changes hair into Receding Short Straight
goto boy_hair_short_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Receded Hairline” {
@KARAM changes hair into Receded Hairline
goto boy_hair_short_1
} “Back to Hairstyles” {
goto boy_hair_1
}
label boy_hair_medium_1
NARRATOR
Medium hairstyles.
choice [shouldPaginate: YES]
“Taper Wavy” {
@KARAM changes hair into Medium Taper Wavy
goto boy_hair_medium_1
} “Side Curls” {
@KARAM changes hair into Medium Side Curls
goto boy_hair_medium_1
} “Mohawk Dreads” {
@KARAM changes hair into Mohawk Dreads Short
goto boy_hair_medium_1
} “Top Dreads Loose” {
@KARAM changes hair into Dreads Loose Top Short
goto boy_hair_medium_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Long Messy Top Curls” {
@KARAM changes hair into Long Top Messy Curls
goto boy_hair_medium_1
} “Side Part Curly” {
@KARAM changes hair into Short Side Part Curly
goto boy_hair_medium_1
} “Messy Undercut” {
@KARAM changes hair into Messy Undercut
goto boy_hair_medium_1
} “Natural Waves” {
@KARAM changes hair into Medium Waves Natural
goto boy_hair_medium_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Medium Wavy Messy” {
@KARAM changes hair into Medium Wavy Messy
goto boy_hair_medium_1
} “Tousled Curls” {
@KARAM changes hair into Tousled Loose Curls Long
goto boy_hair_medium_1
} “Parted Bangs”{
@KARAM changes hair into Long Bang Short Hair
goto boy_hair_medium_1
} “Generic Short” {
@KARAM changes hair into Generic Short
goto boy_hair_medium_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Twists” {
@KARAM changes hair into Short Twists
goto boy_hair_medium_1
} “Messy Curls” {
@KARAM changes hair into Short Messy Curls
goto boy_hair_medium_1
} “Messy Wavy” {
@KARAM changes hair into Wavy Messy
goto boy_hair_medium_1
} “Quiff” {
@KARAM changes hair into Wavy Quiff
goto boy_hair_medium_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Dreads Mohawk” {
@KARAM changes hair into Dreads Mohawk Wrap Up Hair
goto boy_hair_medium_1
} “Small Bun” {
@KARAM changes hair into Small Bun
goto boy_hair_medium_1
} “Manbun” {
@KARAM changes hair into Manbun
goto boy_hair_medium_1
} “Side Shave” {
@KARAM changes hair into Short Side Shave
goto boy_hair_medium_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Pixie” {
@KARAM changes hair into Short Pixie
goto boy_hair_medium_1
} “Messy Side Part” {
@KARAM changes hair into Medium Side Part Flip
goto boy_hair_medium_1
} “Messy Fluffy” {
@KARAM changes hair into Medium Messy Fluffy Parted
goto boy_hair_medium_1
} “Bangs Fluffy” {
@KARAM changes hair into Straight Bang Fluffy Hair Hair
goto boy_hair_medium_1
} “Back to Hairstyles” {
goto boy_hair_1
}
label boy_hair_long_1
NARRATOR
Long hairstyles.
choice [shouldPaginate: YES]
“Shaggy” {
@KARAM changes hair into Short Shaggy
goto boy_hair_long_1
} “Ponytail Wavy” {
@KARAM changes hair into Small Ponytail Wavy Parted Hair
goto boy_hair_long_1
} “Side Swept” {
@KARAM changes hair into Side Swept Medium Hair Solid
goto boy_hair_long_1
} “Messy Wild Unkempt” {
@KARAM changes hair into Messy Wild Unkempt
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Afro” {
@KARAM changes hair into Afro
goto boy_hair_long_1
} “Curly Afro” {
@KARAM changes hair into Curly Loose Afro Hair
goto boy_hair_long_1
} “Medium Dreadlocks” {
@KARAM changes hair into Medium Dreadlocks
goto boy_hair_long_1
} “Long Dreadlocks” {
@KARAM changes hair into Long Dreadlocks
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Braided” {
@KARAM changes hair into Long Braided
goto boy_hair_long_1
} “Dreads Bun” {
@KARAM changes hair into Dreads Long Loose Bun
goto boy_hair_long_1
} “Medium Shoulder Dreads” {
@KARAM changes hair into Dreads Loose Medium Shoulder Hair
goto boy_hair_long_1
} “Medium Curly” {
@KARAM changes hair into Medium Curly
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Short Wavy” {
@KARAM changes hair into Short Wavy
goto boy_hair_long_1
} “Parted Straight” {
@KARAM changes hair into Straight Medium
goto boy_hair_long_1
} “Long Wavy” {
@KARAM changes hair into Wavy Long
goto boy_hair_long_1
} “Long Curls” {
@KARAM changes hair into Long Curls
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Emo Hair” {
@KARAM changes hair into Emo Pixie
goto boy_hair_long_1
} “Scene Hair” {
@KARAM changes hair into Scene Swoosh
goto boy_hair_long_1
} “Punk Hair” {
@KARAM changes hair into Cropped Punk Cut
goto boy_hair_long_1
} “Long Slicked Back”{
@KARAM changes hair into Long Straight Slicked Back
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Messy Curls” {
@KARAM changes hair into Medium Messy Curls
goto boy_hair_long_1
} “Long Wavy Ponytail” {
@KARAM changes hair into Updo Pony Wavy Long
goto boy_hair_long_1
} “Layered Side Part” {
@KARAM changes hair into Long Layered Side Part
goto boy_hair_long_1
} “Loose Curls” {
@KARAM changes hair into Long Loose Curls
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
“Wavy Blowout” {
@KARAM changes hair into Long Wavy Blowout
goto boy_hair_long_1
} “Thick Curls” {
@KARAM changes hair into Long Thick Curls
goto boy_hair_long_1
} “Widows Peak” {
@KARAM changes hair into Long Tapered Widows Peak
goto boy_hair_long_1
} “Wavy Parted” {
@KARAM changes hair into Long Wavy Parted
goto boy_hair_long_1
}“Back to Hairstyles” {
goto boy_hair_1
}
label boy_end_1
NARRATOR
Is this the right look for him?
choice
“Yes!” {
@KARAM is primp_neutral
goto the_adventure_begins
} “No.” {
goto boy_custom_1
}
}
} if (race_human){
label boy_custom_1
@EMILIUS spot 2.400 170 -520 and EMILIUS faces right and EMILIUS starts idle
NARRATOR
What do you want to change?
choice
“Skin Tone” {
goto boy_skin_1
} “Hair” {
goto boy_hair_1
} “Eyes” {
goto boy_eyes_1
} “Eyebrows” {
goto boy_brows_1
} “Face Shape”{
goto boy_face_1
} “Nose” {
goto boy_nose_1
} “Mouth” {
goto boy_mouth_1
} “This is perfect!” {
goto boy_end_1
}
####################### SKIN COLOR #######################
label boy_skin_1
NARRATOR
All skin tones.
choice
“Neutral Shades” {
goto boy_neutralskin_1
} “Rose Shades” {
goto boy_roseskin_1
} “Gold Shades” {
goto boy_goldskin_1
} “Copper Shades” {
goto boy_copperskin_1
} “Ash Shades” {
goto boy_ashskin_1
} “Done” {
goto boy_custom_1
}
label boy_neutralskin_1
NARRATOR
Neutral skin tones.
choice [shouldPaginate: YES]
“Neutral 00” {
@EMILIUS changes bodyColor into Neutral 00
goto boy_neutralskin_1
} “Neutral 01” {
@EMILIUS changes bodyColor into Neutral 01
goto boy_neutralskin_1
} “Neutral 02” {
@EMILIUS changes bodyColor into Neutral 02
goto boy_neutralskin_1
} “Neutral 03” {
@EMILIUS changes bodyColor into Neutral 03
goto boy_neutralskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Neutral 04” {
@EMILIUS changes bodyColor into Neutral 04
goto boy_neutralskin_1
} “Neutral 05” {
@EMILIUS changes bodyColor into Neutral 05
goto boy_neutralskin_1
} “Neutral 06” {
@EMILIUS changes bodyColor into Neutral 06
goto boy_neutralskin_1
} “Neutral 07” {
@EMILIUS changes bodyColor into Neutral 07
goto boy_neutralskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Neutral 08” {
@EMILIUS changes bodyColor into Neutral 08
goto boy_neutralskin_1
} “Neutral 09” {
@EMILIUS changes bodyColor into Neutral 09
goto boy_neutralskin_1
} “Neutral 10” {
@EMILIUS changes bodyColor into Neutral 10
goto boy_neutralskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}
label boy_roseskin_1
NARRATOR
Rose skin tones.
choice [shouldPaginate: YES]
“Rose 00” {
@EMILIUS changes bodyColor into Rose 00
goto boy_roseskin_1
} “Rose 01” {
@EMILIUS changes bodyColor into Rose 01
goto boy_roseskin_1
} “Rose 02” {
@EMILIUS changes bodyColor into Rose 02
goto boy_roseskin_1
} “Rose 03” {
@EMILIUS changes bodyColor into Rose 03
goto boy_roseskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Rose 04” {
@EMILIUS changes bodyColor into Rose 04
goto boy_roseskin_1
} “Rose 05” {
@EMILIUS changes bodyColor into Rose 05
goto boy_roseskin_1
} “Rose 06” {
@EMILIUS changes bodyColor into Rose 06
goto boy_roseskin_1
} “Rose 07” {
@EMILIUS changes bodyColor into Rose 07
goto boy_roseskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Rose 08” {
@EMILIUS changes bodyColor into Rose 08
goto boy_roseskin_1
} “Rose 09” {
@EMILIUS changes bodyColor into Rose 09
goto boy_roseskin_1
} “Rose 10” {
@EMILIUS changes bodyColor into Rose 10
goto boy_roseskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}
label boy_goldskin_1
NARRATOR
Gold skin tones.
choice [shouldPaginate: YES]
“Gold 00” {
@EMILIUS changes bodyColor into Gold 00
goto boy_goldskin_1
} “Gold 01” {
@EMILIUS changes bodyColor into Gold 01
goto boy_goldskin_1
} “Gold 02” {
@EMILIUS changes bodyColor into Gold 02
goto boy_goldskin_1
} “Gold 03” {
@EMILIUS changes bodyColor into Gold 03
goto boy_goldskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Gold 04” {
@EMILIUS changes bodyColor into Gold 04
goto boy_goldskin_1
} “Gold 05” {
@EMILIUS changes bodyColor into Gold 05
goto boy_goldskin_1
} “Gold 06” {
@EMILIUS changes bodyColor into Gold 06
goto boy_goldskin_1
} “Gold 07” {
@EMILIUS changes bodyColor into Gold 07
goto boy_goldskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Gold 08” {
@EMILIUS changes bodyColor into Gold 08
goto boy_goldskin_1
} “Gold 09” {
@EMILIUS changes bodyColor into Gold 09
goto boy_goldskin_1
} “Gold 10” {
@EMILIUS changes bodyColor into Gold 10
goto boy_goldskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}
label boy_copperskin_1
NARRATOR
Copper skin tones.
choice [shouldPaginate: YES]
“Copper 00” {
@EMILIUS changes bodyColor into Copper 00
goto boy_copperskin_1
} “Copper 01” {
@EMILIUS changes bodyColor into Copper 01
goto boy_copperskin_1
} “Copper 02” {
@EMILIUS changes bodyColor into Copper 02
goto boy_copperskin_1
} “Copper 03” {
@EMILIUS changes bodyColor into Copper 03
goto boy_copperskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Copper 04” {
@EMILIUS changes bodyColor into Copper 04
goto boy_copperskin_1
} “Copper 05” {
@EMILIUS changes bodyColor into Copper 05
goto boy_copperskin_1
} “Copper 06” {
@EMILIUS changes bodyColor into Copper 06
goto boy_copperskin_1
} “Copper 07” {
@EMILIUS changes bodyColor into Copper 07
goto boy_copperskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Copper 08” {
@EMILIUS changes bodyColor into Copper 08
goto boy_copperskin_1
} “Copper 09” {
@EMILIUS changes bodyColor into Copper 09
goto boy_copperskin_1
} “Copper 10” {
@EMILIUS changes bodyColor into Copper 10
goto boy_copperskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}
label boy_ashskin_1
NARRATOR
Ash skin tones.
choice [shouldPaginate: YES]
“Ash 00” {
@EMILIUS changes bodyColor into Ash 00
goto boy_ashskin_1
} “Ash 01” {
@EMILIUS changes bodyColor into Ash 01
goto boy_ashskin_1
} “Ash 02” {
@EMILIUS changes bodyColor into Ash 02
goto boy_ashskin_1
} “Ash 03” {
@EMILIUS changes bodyColor into Ash 03
goto boy_ashskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Ash 04” {
@EMILIUS changes bodyColor into Ash 04
goto boy_ashskin_1
} “Ash 05” {
@EMILIUS changes bodyColor into Ash 05
goto boy_ashskin_1
} “Ash 06” {
@EMILIUS changes bodyColor into Ash 06
goto boy_ashskin_1
} “Ash 07” {
@EMILIUS changes bodyColor into Ash 07
goto boy_ashskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Ash 08” {
@EMILIUS changes bodyColor into Ash 08
goto boy_ashskin_1
} “Ash 09” {
@EMILIUS changes bodyColor into Ash 09
goto boy_ashskin_1
} “Ash 10” {
@EMILIUS changes bodyColor into Ash 10
goto boy_ashskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}
####################### EYEBROWs #######################
label boy_brows_1
NARRATOR
Eyebrow shapes.
choice [shouldPaginate: YES]
“Arched Medium”{
@EMILIUS changes eyebrows into Arched Medium
goto boy_brows_1
}“Generic”{
@EMILIUS changes eyebrows into Male Generic
goto boy_brows_1
}“Round Medium”{
@EMILIUS changes eyebrows into Round Medium
goto boy_brows_1
}“Round Soft”{
@EMILIUS changes eyebrows into Round Soft
goto boy_brows_1
} “Change Color” {
goto boy_browscolor_1
} “Done”{
goto boy_custom_1
}
“Round Thick”{
@EMILIUS changes eyebrows into Round Thick
goto boy_brows_1
}“Straight Medium”{
@EMILIUS changes eyebrows into Straight Medium
goto boy_brows_1
}“Arched Bushy”{
@EMILIUS changes eyebrows into Arched Bushy
goto boy_brows_1
}“Round Thin”{
@EMILIUS changes eyebrows into Round Thin
goto boy_brows_1
} “Change Color” {
goto boy_browscolor_1
} “Done”{
goto boy_custom_1
}
“Furrowed Straight”{
@EMILIUS changes eyebrows into Furrowed Straight S
goto boy_brows_1
}“Furrowed Raised”{
@EMILIUS changes eyebrows into Furrowed Raised S
goto boy_brows_1
}“Straight Medium Scar”{
@EMILIUS changes eyebrows into Straight Medium Scar
goto boy_brows_1
} “Done”{
goto boy_custom_1
} “Change Color” {
goto boy_browscolor_1
}
####################### EYEBROW COLOR #######################
label boy_browscolor_1
NARRATOR
Eyebrow colors.
choice [shouldPaginate: YES]
“Dirty Blonde” {
@EMILIUS changes eyebrowsColor into Dirty Blonde
goto boy_browscolor_1
} “Honey Blonde” {
@EMILIUS changes eyebrowsColor into Honey Blonde
goto boy_browscolor_1
} “Platinum Blonde” {
@EMILIUS changes eyebrowsColor into Platinum Blonde
goto boy_browscolor_1
} “Strawberry Blonde” {
@EMILIUS changes eyebrowsColor into Strawberry Blonde
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Blonde Medium” {
@EMILIUS changes eyebrowsColor into Blonde Medium
goto boy_browscolor_1
} “Chestnut Brown” {
@EMILIUS changes eyebrowsColor into Chestnut Brown
goto boy_browscolor_1
} “Dark Brown” {
@EMILIUS changes eyebrowsColor into Dark Brown
goto boy_browscolor_1
} “Deep Brown” {
@EMILIUS changes eyebrowsColor into Deep Brown
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Light Brown” {
@EMILIUS changes eyebrowsColor into Light Brown
goto boy_browscolor_1
} “Dark Black” {
@EMILIUS changes eyebrowsColor into Black Dark
goto boy_browscolor_1
} “Jet Black” {
@EMILIUS changes eyebrowsColor into blackJet
goto boy_browscolor_1
} “Light Pink” {
@EMILIUS changes eyebrowsColor into Pink Lt
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Lavender” {
@EMILIUS changes eyebrowsColor into Purple Lilac
goto boy_browscolor_1
} “Mint” {
@EMILIUS changes eyebrowsColor into Green Mint
goto boy_browscolor_1
} “Ginger Red” {
@EMILIUS changes eyebrowsColor into Ginger Red
goto boy_browscolor_1
} “Copper Red” {
@EMILIUS changes eyebrowsColor into Copper Red
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Gray” {
@EMILIUS changes eyebrowsColor into Gray
goto boy_browscolor_1
} “White” {
@EMILIUS changes eyebrowsColor into White
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
####################### FACE SHAPE #######################
label boy_face_1
NARRATOR
Face shapes.
choice
“Clean Shaven” {
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done” {
goto boy_custom_1
}
label boy_face_clean_1
NARRATOR
Face shapes.
choice [shouldPaginate: YES]
“Soft Diamond” {
@EMILIUS changes face into Diamond Soft
goto boy_face_clean_1
} “Defined Diamond” {
@EMILIUS changes face into Diamond Defined
goto boy_face_clean_1
} “Chiseled” {
@EMILIUS changes face into Chiseled Angular
goto boy_face_clean_1
} “Generic” {
@EMILIUS changes face into Male Generic
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Round” {
@EMILIUS changes face into Round Soft
goto boy_face_clean_1
} “Square Jaw” {
@EMILIUS changes face into Square Jaw
goto boy_face_clean_1
} “Square Defined” {
@EMILIUS changes face into Square Defined
goto boy_face_clean_1
} “Triangle” {
@EMILIUS changes face into Triangle Chiseled
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Mature Square” {
@EMILIUS changes face into Square Jaw Mature
goto boy_face_clean_1
} “Broad Cheeks” {
@EMILIUS changes face into Round Broad Cheeks
goto boy_face_clean_1
} “Triangle Defined Chin” {
@EMILIUS changes face into Triangle Defined Chin
goto boy_face_clean_1
} “Pointed Ear” {
@EMILIUS changes face into Triangle Defined Chin Pointed Ear Skin
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Square Sculpted” {
@EMILIUS changes face into Square Sculpted
goto boy_face_clean_1
} “Cleft Chin” {
@EMILIUS changes face into Square Sculpted Cleft Chin
goto boy_face_clean_1
} “Triangle Sculpted” {
@EMILIUS changes face into Triangle Sculpted
goto boy_face_clean_1
} “Square Youth” {
@EMILIUS changes face into Square Youthful
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Square Aged” {
@EMILIUS changes face into Square Aged
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
} “Facial Hair” {
goto boy_face_beards_1
}
label boy_face_beards_1
NARRATOR
Face shapes.
choice [shouldPaginate: YES]
“Chiseled Stubble” {
@EMILIUS changes face into Chiseled Angular Stubble
goto boy_face_beards_1
} “Chiseled Shaved” {
@EMILIUS changes face into Chiseled Square Stubble Shaved
goto boy_face_beards_1
} “Long Jaw Stubble” {
@EMILIUS changes face into Square Long Jaw Stubble
goto boy_face_beards_1
} “Long Jaw Shadow” {
@EMILIUS changes face into Square Long Jaw Shadow
goto boy_face_beards_1
} “Clean Shaved” {
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
}
“Roundcheek Stubble” {
@EMILIUS changes face into Square Jaw Roundcheek Stubble
goto boy_face_beards_1
} “Scruffy Beard” {
@EMILIUS changes face into Triangle Chiseled Scruffy Beard
goto boy_face_beards_1
} “Clean Shaved” {
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
}
####################### EYE SHAPE #######################
label boy_eyes_1
NARRATOR
Eye shapes.
choice [shouldPaginate: YES]
“Deepset Downturned” {
@EMILIUS changes eyes into Deepset Downturned
goto boy_eyes_1
} “Deepset Heavy” {
@EMILIUS changes eyes into Deepset Heavy Lid
goto boy_eyes_1
} “Deepset Downturned Lid” {
@EMILIUS changes eyes into Deepset Downturned Lidded
goto boy_eyes_1
} “Deepset Mature” {
@EMILIUS changes eyes into Deepset Sloping Mature
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Generic” {
@EMILIUS changes eyes into Male Generic
goto boy_eyes_1
} “Slender” {
@EMILIUS changes eyes into Monolid Slender
goto boy_eyes_1
} “Oval Wide” {
@EMILIUS changes eyes into Oval Wide
goto boy_eyes_1
} “Sloping Heavy Lid” {
@EMILIUS changes eyes into Sloping Heavy Lid
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Deep Sunken” {
@EMILIUS changes eyes into Male Deep Sunken
goto boy_eyes_1
} “Narrow Almond Smiling” {
@EMILIUS changes eyes into Narrow Almond Deep Smiling
goto boy_eyes_1
} “Narrow Almond Sunken” {
@EMILIUS changes eyes into Narrow Almond Deep Sunken
goto boy_eyes_1
} “Hooded Almond” {
@EMILIUS changes eyes into Hooded Almond
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Almond Deep” {
@EMILIUS changes eyes into Wide Almond Deep
goto boy_eyes_1
} “Almond Deep Eyebags” {
@EMILIUS changes eyes into Wide Almond Deep Eyebags
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
####################### EYE COLOR #######################
label boy_eyecolor_1
NARRATOR
Eye colors.
choice [shouldPaginate: YES]
“Black” {
@EMILIUS changes eyesColor into Brown Black
goto boy_eyecolor_1
} “Dark Brown” {
@EMILIUS changes eyesColor into Brown Dark
goto boy_eyecolor_1
} “Light Brown” {
@EMILIUS changes eyesColor into Brown Light
goto boy_eyecolor_1
} “Pale Brown” {
@EMILIUS changes eyesColor into Brown Pale
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
“Ice Blue” {
@EMILIUS changes eyesColor into Ice Blue
goto boy_eyecolor_1
} “Aqua Blue” {
@EMILIUS changes eyesColor into Blue Aqua
goto boy_eyecolor_1
} “Deep Blue” {
@EMILIUS changes eyesColor into Blue Deep
goto boy_eyecolor_1
} “Blue Green” {
@EMILIUS changes eyesColor into Blue Green
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
“Silver” {
@EMILIUS changes eyesColor into Grey Cool
goto boy_eyecolor_1
} “Green” {
@EMILIUS changes eyesColor into Green Emerald
goto boy_eyecolor_1
} “Hazel” {
@EMILIUS changes eyesColor into Hazel
goto boy_eyecolor_1
} “Dark Hazel” {
@EMILIUS changes eyesColor into Hazel Dark
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
“Red” {
@EMILIUS changes eyesColor into Red
goto boy_eyecolor_1
} “Violet” {
@EMILIUS changes eyesColor into Violet
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
####################### MOUTH SHAPE #######################
label boy_mouth_1
NARRATOR
Mouth shapes.
choice [shouldPaginate: YES]
“Medium Straight” {
@EMILIUS changes mouth into Medium Straight Natural
goto boy_mouth_1
}“Thin Heart” {
@EMILIUS changes mouth into Thin Heart
goto boy_mouth_1
}“Small Heart” {
@EMILIUS changes mouth into Small Heart
goto boy_mouth_1
}“Medium Heart” {
@EMILIUS changes mouth into Medium Heart
goto boy_mouth_1
}“Change Color”{
goto boy_mouthcolor_1
} “Done”{
goto boy_custom_1
}
“Full Heart” {
@EMILIUS changes mouth into Full Heart Natural
goto boy_mouth_1
}“Large Heart” {
@EMILIUS changes mouth into Full Heart Large
goto boy_mouth_1
}“Full Flat Top” {
@EMILIUS changes mouth into Full Flat Top Pouty
goto boy_mouth_1
}“Full Lower Lip” {
@EMILIUS changes mouth into Full Lower Lip Sharp
goto boy_mouth_1
}“Change Color”{
goto boy_mouthcolor_1
} “Done”{
goto boy_custom_1
}
####################### MOUTH COLOR #######################
label boy_mouthcolor_1
NARRATOR
All lip colors.
choice
“Natural” {
goto boy_NaturalColors_1
} “Gloss” {
goto boy_GlossColors_1
} “Matte” {
goto boy_MatteColors_1
} “Change Lip Shape” {
goto boy_mouth_1
}
label boy_NaturalColors_1
NARRATOR
Natural lip colors.
choice [shouldPaginate: YES]
“Fair Rose” {
@EMILIUS changes mouthColor into Fair Rose Matte
goto boy_NaturalColors_1
} “Fair Neutral” {
@EMILIUS changes mouthColor into Fair Neutral Matte
goto boy_NaturalColors_1
} “Fair Gold” {
@EMILIUS changes mouthColor into Fair Gold Matte
goto boy_NaturalColors_1
} “Beige Light Gold” {
@EMILIUS changes mouthColor into Beige Light Gold Matte
goto boy_NaturalColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Beige Gold” {
@EMILIUS changes mouthColor into Beige Gold Matte
goto boy_NaturalColors_1
} “Beige Rose” {
@EMILIUS changes mouthColor into Beige Rose
goto boy_NaturalColors_1
} “Beige Deep Neutral” {
@EMILIUS changes mouthColor into Beige Deep Neutral
goto boy_NaturalColors_1
} “Medium Nude” {
@EMILIUS changes mouthColor into Neutral Medium Nude Matte
goto boy_NaturalColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Tan Deep Gold” {
@EMILIUS changes mouthColor into Tan Deep Gold
goto boy_NaturalColors_1
} “Tan Deep Neutral” {
@EMILIUS changes mouthColor into Tan Deep Neutral
goto boy_NaturalColors_1
} “Brown Neutral” {
@EMILIUS changes mouthColor into Brown Neutral
goto boy_NaturalColors_1
} “Brown Gold” {
@EMILIUS changes mouthColor into Brown Gold
goto boy_NaturalColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Brown Deep Gold” {
@EMILIUS changes mouthColor into Brown Deep Gold
goto boy_NaturalColors_1
} “Brown Deep Rose” {
@EMILIUS changes mouthColor into Brown Deep Rose
goto boy_NaturalColors_1
} “Gold Deep Matte” {
@EMILIUS changes mouthColor into Gold Deep Matte
goto boy_NaturalColors_1
} “Done” {
goto boy_custom_1
} “Try Other Colors” {
goto boy_mouthcolor_1
}
label boy_GlossColors_1
NARRATOR
Gloss lipstick colors.
choice [shouldPaginate: YES]
“Peach” {
@EMILIUS changes mouthColor into Peach Gloss
goto boy_GlossColors_1
} “Light Peach” {
@EMILIUS changes mouthColor into Pink Peach Lt Gloss
goto boy_GlossColors_1
} “Beige Pink” {
@EMILIUS changes mouthColor into Pink Beige Gloss
goto boy_GlossColors_1
} “Medium Pink” {
@EMILIUS changes mouthColor into Pink Medium Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Warm Pink” {
@EMILIUS changes mouthColor into Pink Warm Gloss
goto boy_GlossColors_1
} “Hot Pink” {
@EMILIUS changes mouthColor into Pink Hot Gloss
goto boy_GlossColors_1
} “Deep Pink” {
@EMILIUS changes mouthColor into Pink Deep Gloss
goto boy_GlossColors_1
} “Rose” {
@EMILIUS changes mouthColor into Rose Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Pink Peach” {
@EMILIUS changes mouthColor into Pink Peach Medium Gloss
goto boy_GlossColors_1
} “Light Nude” {
@EMILIUS changes mouthColor into Rose Light Nude Gloss
goto boy_GlossColors_1
} “Medium Nude” {
@EMILIUS changes mouthColor into Rose Medium Nude Gloss
goto boy_GlossColors_1
} “Dark Nude” {
@EMILIUS changes mouthColor into Rose Dark Nude Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Mauve” {
@EMILIUS changes mouthColor into Mauve Gloss
goto boy_GlossColors_1
} “Pastel Purple” {
@EMILIUS changes mouthColor into Purple Pastel Gloss
goto boy_GlossColors_1
} “Plum” {
@EMILIUS changes mouthColor into Plum Gloss
goto boy_GlossColors_1
} “Deep Purple” {
@EMILIUS changes mouthColor into Purple Deep Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Red” {
@EMILIUS changes mouthColor into Red Gloss
goto boy_GlossColors_1
} “Deep Red” {
@EMILIUS changes mouthColor into Red Deep Gloss
goto boy_GlossColors_1
} “Violet” {
@EMILIUS changes mouthColor into Violet Gloss
goto boy_GlossColors_1
} “Black” {
@EMILIUS changes mouthColor into Black Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Blood Orange” {
@EMILIUS changes mouthColor into Blood Orange Gloss
goto boy_GlossColors_1
} “Red Garnet” {
@EMILIUS changes mouthColor into Red Garnet Gloss
goto boy_GlossColors_1
} “Blackberry” {
@EMILIUS changes mouthColor into Blackberry Gloss
goto boy_GlossColors_1
} “Pink Cashmere” {
@EMILIUS changes mouthColor into Pink Cashmere Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Ash Deep” {
@EMILIUS changes mouthColor into Ash Deep Gloss
goto boy_GlossColors_1
} “Dark Mauve” {
@EMILIUS changes mouthColor into Dark Mauve Gloss
goto boy_GlossColors_1
} “Dark Amethyst” {
@EMILIUS changes mouthColor into Dark Amethyst Gloss
goto boy_GlossColors_1
} “Royal Blue” {
@EMILIUS changes mouthColor into Royal Blue Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Dark Apricot” {
@EMILIUS changes mouthColor into Dark Apricot Gloss
goto boy_GlossColors_1
} “Copper Deep” {
@EMILIUS changes mouthColor into Copper Deep Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
label boy_MatteColors_1
NARRATOR
Matte lipstick colors.
choice [shouldPaginate: YES]
“Peach” {
@EMILIUS changes mouthColor into Peach Matte
goto boy_MatteColors_1
} “Light Peach” {
@EMILIUS changes mouthColor into Pink Peach Light Matte
goto boy_MatteColors_1
} “Beige Pink” {
@EMILIUS changes mouthColor into Pink Beige Matte
goto boy_MatteColors_1
} “Medium Pink” {
@EMILIUS changes mouthColor into Pink Medium Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Warm Pink” {
@EMILIUS changes mouthColor into Pink Warm Matte
goto boy_MatteColors_1
} “Hot Pink” {
@EMILIUS changes mouthColor into Pink Hot Matte
goto boy_MatteColors_1
} “Deep Pink” {
@EMILIUS changes mouthColor into Pink Deep Matte
goto boy_MatteColors_1
} “Rose” {
@EMILIUS changes mouthColor into Rose Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Pink Peach” {
@EMILIUS changes mouthColor into Pink Peach Medium Matte
goto boy_MatteColors_1
} “Light Nude” {
@EMILIUS changes mouthColor into Rose Light Nude Matte
goto boy_MatteColors_1
} “Medium Nude” {
@EMILIUS changes mouthColor into Rose Medium Nude Matte
goto boy_MatteColors_1
} “Dark Nude” {
@EMILIUS changes mouthColor into Rose Dark Nude Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Mauve” {
@EMILIUS changes mouthColor into Mauve Matte
goto boy_MatteColors_1
} “Pastel Purple” {
@EMILIUS changes mouthColor into Purple Pastel Matte
goto boy_MatteColors_1
} “Plum” {
@EMILIUS changes mouthColor into Plum Matte
goto boy_MatteColors_1
} “Deep Purple” {
@EMILIUS changes mouthColor into Purple Deep Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Red” {
@EMILIUS changes mouthColor into Red Matte
goto boy_MatteColors_1
} “Deep Red” {
@EMILIUS changes mouthColor into Red Deep Matte
goto boy_MatteColors_1
} “Violet” {
@EMILIUS changes mouthColor into Violet Matte
goto boy_MatteColors_1
} “Black” {
@EMILIUS changes mouthColor into Black Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Blood Orange” {
@EMILIUS changes mouthColor into Blood Orange Matte
goto boy_MatteColors_1
} “Red Garnet” {
@EMILIUS changes mouthColor into Red Garnet Matte
goto boy_MatteColors_1
} “Blackberry” {
@EMILIUS changes mouthColor into Blackberry Matte
goto boy_MatteColors_1
} “Pink Cashmere” {
@EMILIUS changes mouthColor into Pink Cashmere Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Ash Deep” {
@EMILIUS changes mouthColor into Ash Deep Matte
goto boy_MatteColors_1
} “Dark Mauve” {
@EMILIUS changes mouthColor into Dark Mauve Matte
goto boy_MatteColors_1
} “Dark Amethyst” {
@EMILIUS changes mouthColor into Dark Amethyst Matte
goto boy_MatteColors_1
} “Royal Blue” {
@EMILIUS changes mouthColor into Royal Blue Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Dark Apricot” {
@EMILIUS changes mouthColor into Dark Apricot Matte
goto boy_MatteColors_1
} “Copper Deep” {
@EMILIUS changes mouthColor into Copper Deep Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
####################### NOSE SHAPE #######################
label boy_nose_1
NARRATOR
Nose shapes.
choice [shouldPaginate: YES]
“Button Wide” {
@EMILIUS changes nose into Button Wide
goto boy_nose_1
} “Button Round” {
@EMILIUS changes nose into Button Round
goto boy_nose_1
} “Grecian Narrow” {
@EMILIUS changes nose into Grecian Narrow
goto boy_nose_1
} “Grecian Hooked”{
@EMILIUS changes nose into Hooked Grecian
goto boy_nose_1
} “Grecian Round” {
@EMILIUS changes nose into Grecian Round
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Round Wide” {
@EMILIUS changes nose into Round Wide
goto boy_nose_1
} “Generic” {
@EMILIUS changes nose into Male Generic
goto boy_nose_1
} “Straight Narrow” {
@EMILIUS changes nose into Straight Narrow
goto boy_nose_1
} “Bulbous Downturned” {
@EMILIUS changes nose into Bulbous Downturned
goto boy_nose_1
} “Round Flared Downturned” {
@EMILIUS changes nose into Round Flared Downturned
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Straight Flat” {
@EMILIUS changes nose into Straight Flat
goto boy_nose_1
} “Straight Pointed” {
@EMILIUS changes nose into Straight Pointed
goto boy_nose_1
} “Roman Straight Broad” {
@EMILIUS changes nose into Roman Straight Broad
goto boy_nose_1
} “Done”{
goto boy_custom_1
} “Aquiline Medium” {
@EMILIUS changes nose into Aquiline Medium
goto boy_nose_1
}
####################### HAIR STYLE #######################
label boy_hair_1
NARRATOR
All hairstyles.
choice
“Short Hair” {
goto boy_hair_short_1
} “Medium Hair” {
goto boy_hair_medium_1
} “Long Hair” {
goto boy_hair_long_1
} “Done” {
goto boy_custom_1
} “Change Color” {
goto boy_haircolor_1
}
label boy_hair_short_1
NARRATOR
Short hairstyles.
choice [shouldPaginate: YES]
“Military Fade” {
@EMILIUS changes hair into Military Fade Cut
goto boy_hair_short_1
} “Slicked Back” {
@EMILIUS changes hair into Slicked Back Solid
goto boy_hair_short_1
} “Curly Fade” {
@EMILIUS changes hair into Short Curly Fade
goto boy_hair_short_1
} “Curly Mohawk” {
@EMILIUS changes hair into Curly Mohawk
goto boy_hair_short_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Crew Cut” {
@EMILIUS changes hair into Crew Cut
goto boy_hair_short_1
} “Conservative Cut” {
@EMILIUS changes hair into Conservative Cut
goto boy_hair_short_1
} “Undercut Short” {
@EMILIUS changes hair into Undercut Short Straight Texture
goto boy_hair_short_1
} “Receding Short” {
@EMILIUS changes hair into Receding Short Straight
goto boy_hair_short_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Receded Hairline” {
@EMILIUS changes hair into Receded Hairline
goto boy_hair_short_1
} “Back to Hairstyles” {
goto boy_hair_1
} “Change Color” {
goto boy_haircolor_1
}
label boy_hair_medium_1
NARRATOR
Medium hairstyles.
choice [shouldPaginate: YES]
“Taper Wavy” {
@EMILIUS changes hair into Medium Taper Wavy
goto boy_hair_medium_1
} “Side Curls” {
@EMILIUS changes hair into Medium Side Curls
goto boy_hair_medium_1
} “Mohawk Dreads” {
@EMILIUS changes hair into Mohawk Dreads Short
goto boy_hair_medium_1
} “Top Dreads Loose” {
@EMILIUS changes hair into Dreads Loose Top Short
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Long Messy Top Curls” {
@EMILIUS changes hair into Long Top Messy Curls
goto boy_hair_medium_1
} “Side Part Curly” {
@EMILIUS changes hair into Short Side Part Curly
goto boy_hair_medium_1
} “Messy Undercut” {
@EMILIUS changes hair into Messy Undercut
goto boy_hair_medium_1
} “Natural Waves” {
@EMILIUS changes hair into Medium Waves Natural
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Medium Wavy Messy” {
@EMILIUS changes hair into Medium Wavy Messy
goto boy_hair_medium_1
} “Tousled Curls” {
@EMILIUS changes hair into Tousled Loose Curls Long
goto boy_hair_medium_1
} “Parted Bangs” {
@EMILIUS changes hair into Long Bang Short Hair
goto boy_hair_medium_1
} “Generic Short” {
@EMILIUS changes hair into Generic Short
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Twists” {
@EMILIUS changes hair into Short Twists
goto boy_hair_medium_1
} “Messy Curls” {
@EMILIUS changes hair into Short Messy Curls
goto boy_hair_medium_1
} “Messy Wavy” {
@EMILIUS changes hair into Wavy Messy
goto boy_hair_medium_1
} “Quiff” {
@EMILIUS changes hair into Wavy Quiff
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Dreads Mohawk” {
@EMILIUS changes hair into Dreads Mohawk Wrap Up Hair
goto boy_hair_medium_1
} “Small Bun” {
@EMILIUS changes hair into Small Bun
goto boy_hair_medium_1
} “Manbun” {
@EMILIUS changes hair into Manbun
goto boy_hair_medium_1
} “Side Shave” {
@EMILIUS changes hair into Short Side Shave
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Pixie” {
@EMILIUS changes hair into Short Pixie
goto boy_hair_medium_1
} “Messy Side Part” {
@EMILIUS changes hair into Medium Side Part Flip
goto boy_hair_medium_1
} “Messy Fluffy” {
@EMILIUS changes hair into Medium Messy Fluffy Parted
goto boy_hair_medium_1
} “Bangs Fluffy” {
@EMILIUS changes hair into Straight Bang Fluffy Hair Hair
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
label boy_hair_long_1
NARRATOR
Long hairstyles.
choice [shouldPaginate: YES]
“Shaggy” {
@EMILIUS changes hair into Short Shaggy
goto boy_hair_long_1
} “Ponytail Wavy” {
@EMILIUS changes hair into Small Ponytail Wavy Parted Hair
goto boy_hair_long_1
} “Side Swept” {
@EMILIUS changes hair into Side Swept Medium Hair Solid
goto boy_hair_long_1
} “Messy Wild Unkempt” {
@EMILIUS changes hair into Messy Wild Unkempt
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Afro” {
@EMILIUS changes hair into Afro
goto boy_hair_long_1
} “Curly Afro” {
@EMILIUS changes hair into Curly Loose Afro Hair
goto boy_hair_long_1
} “Medium Dreadlocks” {
@EMILIUS changes hair into Medium Dreadlocks
goto boy_hair_long_1
} “Long Dreadlocks” {
@EMILIUS changes hair into Long Dreadlocks
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Braided” {
@EMILIUS changes hair into Long Braided
goto boy_hair_long_1
} “Dreads Bun” {
@EMILIUS changes hair into Dreads Long Loose Bun
goto boy_hair_long_1
} “Medium Shoulder Dreads” {
@EMILIUS changes hair into Dreads Loose Medium Shoulder Hair
goto boy_hair_long_1
} “Medium Curly” {
@EMILIUS changes hair into Medium Curly
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Short Wavy” {
@EMILIUS changes hair into Short Wavy
goto boy_hair_long_1
} “Parted Straight” {
@EMILIUS changes hair into Straight Medium
goto boy_hair_long_1
} “Long Wavy” {
@EMILIUS changes hair into Wavy Long
goto boy_hair_long_1
} “Long Curls” {
@EMILIUS changes hair into Long Curls
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Emo Hair” {
@EMILIUS changes hair into Emo Pixie
goto boy_hair_long_1
} “Scene Hair” {
@EMILIUS changes hair into Scene Swoosh
goto boy_hair_long_1
} “Punk Hair” {
@EMILIUS changes hair into Cropped Punk Cut
goto boy_hair_long_1
} “Long Slicked Back” {
@EMILIUS changes hair into Long Straight Slicked Back
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Messy Curls” {
@EMILIUS changes hair into Medium Messy Curls
goto boy_hair_long_1
} “Long Wavy Ponytail” {
@EMILIUS changes hair into Updo Pony Wavy Long
goto boy_hair_long_1
} “Layered Side Part” {
@EMILIUS changes hair into Long Layered Side Part
goto boy_hair_long_1
} “Loose Curls” {
@EMILIUS changes hair into Long Loose Curls
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Wavy Blowout” {
@EMILIUS changes hair into Long Wavy Blowout
goto boy_hair_long_1
} “Thick Curls” {
@EMILIUS changes hair into Long Thick Curls
goto boy_hair_long_1
} “Widows Peak” {
@EMILIUS changes hair into Long Tapered Widows Peak
goto boy_hair_long_1
} “Wavy Parted” {
@EMILIUS changes hair into Long Wavy Parted
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
####################### HAIR COLOR #######################
label boy_haircolor_1
NARRATOR
All hair colors.
choice
“Dark”{
goto boy_hairDark_1
}“Light” {
goto boy_hairLight_1
}“Dyed”{
goto boy_hairDye_1
} “Back to Styles” {
goto boy_hair_1
}
label boy_hairDark_1
NARRATOR
Dark hair colors.
choice [shouldPaginate: YES]
“Light Brown” {
@EMILIUS changes hairColor into Light Brown
goto boy_hairDark_1
}“Warm Brown” {
@EMILIUS changes hairColor into Medium Warm Brown
goto boy_hairDark_1
}“Medium Brown” {
@EMILIUS changes hairColor into Medium Brown
goto boy_hairDark_1
}“Chestnut Brown”{
@EMILIUS changes hairColor into Chestnut Brown
goto boy_hairDark_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
“Dark Brown”{
@EMILIUS changes hairColor into Dark Brown
goto boy_hairDark_1
}“Brunette Brown”{
@EMILIUS changes hairColor into Brunette Brown
goto boy_hairDark_1
}“Ginger Red” {
@EMILIUS changes hairColor into Ginger Red
goto boy_hairDark_1
}“Burgundy Red” {
@EMILIUS changes hairColor into Burgundy Red
goto boy_hairDark_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
“Deep Brown” {
@EMILIUS changes hairColor into Deep Brown
goto boy_hairDark_1
}“Brown Black” {
@EMILIUS changes hairColor into Brown Black
goto boy_hairDark_1
}“Dark Black” {
@EMILIUS changes hairColor into Black Dark
goto boy_hairDark_1
}“Jet Black” {
@EMILIUS changes hairColor into Black Jet
goto boy_hairDark_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
label boy_hairLight_1
NARRATOR
Light hair colors.
choice [shouldPaginate: YES]
“Platinum Blonde” {
@EMILIUS changes hairColor into Platinum Blonde
goto boy_hairLight_1
}“Dirty Blonde” {
@EMILIUS changes hairColor into Dirty Blonde
goto boy_hairLight_1
}“Honey Blonde” {
@EMILIUS changes hairColor into Honey Blonde
goto boy_hairLight_1
}“Strawberry Blonde” {
@EMILIUS changes hairColor into Strawberry Blonde
goto boy_hairLight_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
“Medium Blonde” {
@EMILIUS changes hairColor into Blonde Medium
goto boy_hairLight_1
}“Ash Blonde” {
@EMILIUS changes hairColor into Ash Blonde
goto boy_hairLight_1
}“Peach Blonde” {
@EMILIUS changes hairColor into Peach Blonde
goto boy_hairLight_1
}“Platinum White” {
@EMILIUS changes hairColor into Platinum White
goto boy_hairLight_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
label boy_hairDye_1
NARRATOR
Dyed hair colors.
choice
“Pink/Purple” {
goto boy_hairDye_Pink_1
}“Blue/Green” {
goto boy_hairDye_Blue_1
}“Red/Yellow” {
goto boy_hairDye_Red_1
}“White/Grey” {
goto boy_hairDye_White_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
label boy_hairDye_Pink_1
NARRATOR
Pink and purple hair colors.
choice [shouldPaginate: YES]
“Hot Pink” {
@EMILIUS changes hairColor into Hot Pink
goto boy_hairDye_Pink_1
} “Light Pink” {
@EMILIUS changes hairColor into Pink Lt
goto boy_hairDye_Pink_1
} “Warm Pink” {
@EMILIUS changes hairColor into Warm Pink
goto boy_hairDye_Pink_1
} “Rose Gold” {
@EMILIUS changes hairColor into Rose Gold
goto boy_hairDye_Pink_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Purple” {
@EMILIUS changes hairColor into Red Purple
goto boy_hairDye_Pink_1
} “Purple Lilac” {
@EMILIUS changes hairColor into Purple Lilac
goto boy_hairDye_Pink_1
} “Plum” {
@EMILIUS changes hairColor into Plum
goto boy_hairDye_Pink_1
} “Dark Purple” {
@EMILIUS changes hairColor into Purple
goto boy_hairDye_Pink_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Pastel Lavender” {
@EMILIUS changes hairColor into Pastel Purple Lavender
goto boy_hairDye_Pink_1
}“Done” {
goto boy_custom_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}
label boy_hairDye_Blue_1
NARRATOR
Blue and green hair colors.
choice [shouldPaginate: YES]
“Blue” {
@EMILIUS changes hairColor into Blue
goto boy_hairDye_Blue_1
} “Light Blue” {
@EMILIUS changes hairColor into Cornflower Blue
goto boy_hairDye_Blue_1
} “Aqua Blue” {
@EMILIUS changes hairColor into Aqua Blue
goto boy_hairDye_Blue_1
} “Dark Blue” {
@EMILIUS changes hairColor into Blue Black
goto boy_hairDye_Blue_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Green” {
@EMILIUS changes hairColor into Green
goto boy_hairDye_Blue_1
} “Lime Green” {
@EMILIUS changes hairColor into Yellow Green
goto boy_hairDye_Blue_1
} “Mint” {
@EMILIUS changes hairColor into Mint
goto boy_hairDye_Blue_1
} “Aqua Green” {
@EMILIUS changes hairColor into Aqua Green
goto boy_hairDye_Blue_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Pastel Blue” {
@EMILIUS changes hairColor into Pastel Blue
goto boy_hairDye_Blue_1
} “Pastel Mint” {
@EMILIUS changes hairColor into Pastel Mint
goto boy_hairDye_Blue_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
label boy_hairDye_Red_1
NARRATOR
Red, yellow, & orange hair colors.
choice [shouldPaginate: YES]
“Yellow” {
@EMILIUS changes hairColor into Yellow
goto boy_hairDye_Red_1
} “Orange” {
@EMILIUS changes hairColor into Orange
goto boy_hairDye_Red_1
} “Red” {
@EMILIUS changes hairColor into Red
goto boy_hairDye_Red_1
} “Copper Red” {
@EMILIUS changes hairColor into Copper Red
goto boy_hairDye_Red_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
label boy_hairDye_White_1
NARRATOR
White & grey hair colors.
choice [shouldPaginate: YES]
“Grey” {
@EMILIUS changes hairColor into Cool Gray
goto boy_hairDye_White_1
} “Light Grey” {
@EMILIUS changes hairColor into Aqua Gray
goto boy_hairDye_White_1
}“White” {
@EMILIUS changes hairColor into Warm White
goto boy_hairDye_White_1
}“Ice” {
@EMILIUS changes hairColor into Platinum Ice
goto boy_hairDye_White_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
label boy_end_1
NARRATOR
Is this the right look for him?
choice
“Yes!” {
@EMILIUS is primp_neutral
goto the_adventure_begins
} “No.” {
goto boy_custom_1
}
}
(2)
if (race_tiefling){
label female_custom_1
@ZOFIA spot 2.400 170 -520 and ZOFIA faces right and ZOFIA starts idle
NARRATOR
What do you want to change?
choice
“Hair” {
goto fem_hair_1
} “Eyebrows” {
goto fem_brows_1
} “Face” {
goto fem_face_1
} “Nose” {
goto fem_nose_1
} “This is perfect!” {
goto female_1_end
}
####################### EYEBROWS #######################
label fem_brows_1
NARRATOR
Eyebrow shapes.
choice [shouldPaginate: YES]
“Arched Natural”{
@ZOFIA changes eyebrows into Arched Natural
goto fem_brows_1
}“Arched Thick”{
@ZOFIA changes eyebrows into Arched Thick Styled
goto fem_brows_1
}“Arched Thin”{
@ZOFIA changes eyebrows into Arched Thin
goto fem_brows_1
}“Arched Thin High”{
@ZOFIA changes eyebrows into Arched Thin High
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
“Round Medium”{
@ZOFIA changes eyebrows into Round Medium
goto fem_brows_1
}“Round Thick”{
@ZOFIA changes eyebrows into Round Thick
goto fem_brows_1
}“Round Thin High”{
@ZOFIA changes eyebrows into Round Thin High
goto fem_brows_1
}“Straight Medium”{
@ZOFIA changes eyebrows into Straight Medium
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
“Arched Natural Scar”{
@ZOFIA changes eyebrows into Arched Natural Scar
goto fem_brows_1
}“High Arch Angled”{
@ZOFIA changes eyebrows into High Arch Angled
goto fem_brows_1
}“Arched Short”{
@ZOFIA changes eyebrows into Arched Short
goto fem_brows_1
}“Bushy Thick”{
@ZOFIA changes eyebrows into Bushy Thick
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
####################### EYEBROW COLOR #######################
label fem_browscolor_1
NARRATOR
Eyebrow colors.
choice [shouldPaginate: YES]
“Dirty Blonde” {
@ZOFIA changes eyebrowsColor into Dirty Blonde
goto fem_browscolor_1
} “Honey Blonde” {
@ZOFIA changes eyebrowsColor into Honey Blonde
goto fem_browscolor_1
} “Platinum Blonde” {
@ZOFIA changes eyebrowsColor into Platinum Blonde
goto fem_browscolor_1
} “Strawberry Blonde” {
@ZOFIA changes eyebrowsColor into Strawberry Blonde
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Blonde Medium” {
@ZOFIA changes eyebrowsColor into Blonde Medium
goto fem_browscolor_1
} “Chestnut Brown” {
@ZOFIA changes eyebrowsColor into Chestnut Brown
goto fem_browscolor_1
} “Dark Brown” {
@ZOFIA changes eyebrowsColor into Dark Brown
goto fem_browscolor_1
} “Deep Brown” {
@ZOFIA changes eyebrowsColor into Deep Brown
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Light Brown” {
@ZOFIA changes eyebrowsColor into Light Brown
goto fem_browscolor_1
} “Dark Black” {
@ZOFIA changes eyebrowsColor into Black Dark
goto fem_browscolor_1
} “Jet Black” {
@ZOFIA changes eyebrowsColor into blackJet
goto fem_browscolor_1
} “Light Pink” {
@ZOFIA changes eyebrowsColor into Pink Lt
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Lavender” {
@ZOFIA changes eyebrowsColor into Purple Lilac
goto fem_browscolor_1
} “Mint” {
@ZOFIA changes eyebrowsColor into Green Mint
goto fem_browscolor_1
} “Ginger Red” {
@ZOFIA changes eyebrowsColor into Ginger Red
goto fem_browscolor_1
} “Copper Red” {
@ZOFIA changes eyebrowsColor into Copper Red
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Gray” {
@ZOFIA changes eyebrowsColor into Gray
goto fem_browscolor_1
} “White” {
@ZOFIA changes eyebrowsColor into White
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
####################### FACE SHAPE #######################
label fem_face_1
NARRATOR
Face shapes.
choice [shouldPaginate: YES]
“Diamond” {
@ZOFIA changes face into Diamond
goto fem_face_1
} “Long Diamond” {
@ZOFIA changes face into Diamond Long
goto fem_face_1
} “Defined Diamond” {
@ZOFIA changes face into Diamond Defined Contour
goto fem_face_1
} “Defined Heart” {
@ZOFIA changes face into Heart Defined
goto fem_face_1
} “Defined Squared” {
@ZOFIA changes face into Square Defined
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Soft Heart” {
@ZOFIA changes face into Heart Soft
goto fem_face_1
} “Defined Triangle” {
@ZOFIA changes face into Triangle Defined
goto fem_face_1
} “Mature Square” {
@ZOFIA changes face into Square Mature
goto fem_face_1
} “Mature Heart” {
@ZOFIA changes face into Heart Mature
goto fem_face_1
} “Soft Round” {
@ZOFIA changes face into Round Soft
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Soft” {
@ZOFIA changes face into Square Soft
goto fem_face_1
} “Round Puffy” {
@ZOFIA changes face into Round Puffy Cheek
goto fem_face_1
} “Heart Double Chin” {
@ZOFIA changes face into Heart Mature Double Chin
goto fem_face_1
} “Round Double Chin” {
@ZOFIA changes face into Round Double Chin
goto fem_face_1
} “Long Double Chin” {
@ZOFIA changes face into Long Double Chin
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Youth” {
@ZOFIA changes face into Square Youthful
goto fem_face_1
} “Square Aged” {
@ZOFIA changes face into Square Aged
goto fem_face_1
} “Square Chiseled” {
@ZOFIA changes face into Square Chiseled
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Triangle Chiseled” {
@ZOFIA changes face into Triangle Chiseled
goto fem_face_1
}
####################### NOSE SHAPE #######################
label fem_nose_1
NARRATOR
Nose shapes.
choice [shouldPaginate: YES]
“Defined Natural” {
@ZOFIA changes nose into Defined Natural
goto fem_nose_1
} “Grecian Soft” {
@ZOFIA changes nose into Grecian Soft
goto fem_nose_1
} “Round Broad” {
@ZOFIA changes nose into Round Broad
goto fem_nose_1
} “Round Button” {
@ZOFIA changes nose into Round Button
goto fem_nose_1
} “Round Button Upturned” {
@ZOFIA changes nose into Round Button Upturned
goto fem_nose_1
} “Done”{
goto female_custom_1
}
“Round Downturned” {
@ZOFIA changes nose into Round Downturned
goto fem_nose_1
} “Round Flared Upturned” {
@ZOFIA changes nose into Round Flared Upturned
goto fem_nose_1
} “Round Flared Downturned” {
@ZOFIA changes nose into Round Flared Downturned
goto fem_nose_1
} “Pointed Downturned” {
@ZOFIA changes nose into Pointed Downturned
goto fem_nose_1
} “Broad Wide” {
@ZOFIA changes nose into Broad Wide
goto fem_nose_1
} “Done”{
goto female_custom_1
}
####################### HAIR STYLE #######################
label fem_hair_1
NARRATOR
All hairstyles.
choice
“Short Hair”{
goto fem_hairShort_1
}“Mid-length Hair”{
goto fem_hairMedium_1
}“Long Hair”{
goto fem_hairLong_1
}“Styled Hair”{
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
label fem_hairShort_1
NARRATOR
Short hairstyles.
choice [shouldPaginate: YES]
“Afro” {
@ZOFIA changes hair into Afro
goto fem_hairShort_1
} “Short Afro” {
@ZOFIA changes hair into Short Afro
goto fem_hairShort_1
} “Classic Bob” {
@ZOFIA changes hair into Classic Bob
goto fem_hairShort_1
} “Curly Bob” {
@ZOFIA changes hair into Curly Bob
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Faux Hawk” {
@ZOFIA changes hair into Long Faux Hawk Solid
goto fem_hairShort_1
}“Fade” {
@ZOFIA changes hair into Short Curly Fade
goto fem_hairShort_1
}“Pixie” {
@ZOFIA changes hair into Short Pixie
goto fem_hairShort_1
}“Punk Pixie” {
@ZOFIA changes hair into Punk Pixie
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Short Wavy” {
@ZOFIA changes hair into Short Wavy Hair Solid
goto fem_hairShort_1
}“Blunt Bangs” {
@ZOFIA changes hair into Blunt Bangs Short
goto fem_hairShort_1
} “Wavy Side Shaved” {
@ZOFIA changes hair into Short Wavy Side Shave
goto fem_hairShort_1
}“Curly Blow Out” {
@ZOFIA changes hair into Short Curly Blow Out
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Crew Cut” {
@ZOFIA changes hair into Crew Cut
goto fem_hairShort_1
}“Short Fringe” {
@ZOFIA changes hair into Short Layered Fringe
goto fem_hairShort_1
}“Straight Tucked” {
@ZOFIA changes hair into Short Straight Tucked
goto fem_hairShort_1
}“Emo Pixie” {
@ZOFIA changes hair into Emo Pixie
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Bantu Knots” {
@ZOFIA changes hair into Bantu Knots
goto fem_hairShort_1
}“Conservative Cut” {
@ZOFIA changes hair into Conservative Cut
goto fem_hairShort_1
}“Parted Bangs” {
@ZOFIA changes hair into Long Bang Short Hair
goto fem_hairShort_1
}“Side Part Curly” {
@ZOFIA changes hair into Side Part Curly Asymmetrical
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Short Flipped” {
@ZOFIA changes hair into Short Flipped Wavy Solid
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
label fem_hairMedium_1
NARRATOR
Medium hairstyles.
choice [shouldPaginate: YES]
“Braided” {
@ZOFIA changes hair into Medium Braided
goto fem_hairMedium_1
}“Medium Dreadlocks” {
@ZOFIA changes hair into Medium Dreadlocks
goto fem_hairMedium_1
}“Hair Flip” {
@ZOFIA changes hair into Hair Flip
goto fem_hairMedium_1
}“Straight” {
@ZOFIA changes hair into Straight Medium
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Lob Bangs” {
@ZOFIA changes hair into Lob Bangs Blunt
goto fem_hairMedium_1
}“Overgrown Bangs” {
@ZOFIA changes hair into Medium Straight Overgrown Bangs
goto fem_hairMedium_1
}“Wavy Ombre” {
@ZOFIA changes hair into Short Wavy Ombre
goto fem_hairMedium_1
}“Medium Curly” {
@ZOFIA changes hair into Medium Curly Solid
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Voluminous Curls” {
@ZOFIA changes hair into Voluminous Curls
goto fem_hairMedium_1
} “Parted Wavy” {
@ZOFIA changes hair into Short Wavy Asymmetrical
goto fem_hairMedium_1
} “Wavy Side Curls” {
@ZOFIA changes hair into Wavy Side Curls
goto fem_hairMedium_1
} “Layered Wavy Bob” {
@ZOFIA changes hair into Layered Wavy Bob
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Straight Down” {
@ZOFIA changes hair into Medium Straight Down
goto fem_hairMedium_1
} “Shoulder Curly” {
@ZOFIA changes hair into Medium Shoulder Curly
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
label fem_hairLong_1
NARRATOR
Long hairstyles.
choice [shouldPaginate: YES]
“Beach Wave” {
@ZOFIA changes hair into Beach Wave Hair
goto fem_hairLong_1
}“Long Braided” {
@ZOFIA changes hair into Long Braided
goto fem_hairLong_1
}“Long Dreadlocks” {
@ZOFIA changes hair into Long Dreadlocks
goto fem_hairLong_1
}“Feathered” {
@ZOFIA changes hair into Long Feathered
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Blunt Bangs” {
@ZOFIA changes hair into Long Straight Loose Bangs Blunt Solid
goto fem_hairLong_1
}“Sideswept Bangs” {
@ZOFIA changes hair into Long Straight Loose Bangs Sideswept Solid
goto fem_hairLong_1
}“Straight” {
@ZOFIA changes hair into Long Straight Loose Solid
goto fem_hairLong_1
}“Wavy Long” {
@ZOFIA changes hair into Wavy Long
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Wavy Parted” {
@ZOFIA changes hair into Long Wavy Parted Hair
goto fem_hairLong_1
}“Feathered Bangs” {
@ZOFIA changes hair into Long Feathered Bangs Blunt
goto fem_hairLong_1
}“Braided Dreads Parted” {
@ZOFIA changes hair into Dreads Braided
goto fem_hairLong_1
}“Long Voluminous Curls” {
@ZOFIA changes hair into Long Voluminous Curls Loose
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Curls” {
@ZOFIA changes hair into Long Curls
goto fem_hairLong_1
}“Wavy Princess Braid” {
@ZOFIA changes hair into Long Down Wavy Princess Braid
goto fem_hairLong_1
}“Bouffant Wavy” {
@ZOFIA changes hair into Bouffant Long Wavy
goto fem_hairLong_1
}“Loose Curls” {
@ZOFIA changes hair into Long Loose Curls
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Wavy Blowout” {
@ZOFIA changes hair into Long Wavy Blowout
goto fem_hairLong_1
}“Side Shave” {
@ZOFIA changes hair into Long Side Shave
goto fem_hairLong_1
}“Scene Hair” {
@ZOFIA changes hair into Scene Swoosh
goto fem_hairLong_1
}“Slicked Back” {
@ZOFIA changes hair into Long Straight Slicked Back
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Thick Curls” {
@ZOFIA changes hair into Long Thick Curls
goto fem_hairLong_1
}“Loose Bangs Sideswept” {
@ZOFIA changes hair into Long Wavy Loose Bangs Sideswept
goto fem_hairLong_1
}“Layered Side Part” {
@ZOFIA changes hair into Long Layered Side Part
goto fem_hairLong_1
}“Widows Peak” {
@ZOFIA changes hair into Long Tapered Widows Peak
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
label fem_hairUp_1
NARRATOR
Updo hairstyles.
choice [shouldPaginate: YES]
“Braided Bun” {
@ZOFIA changes hair into Braided Bun
goto fem_hairUp_1
}“Short Ponytail” {
@ZOFIA changes hair into Short High Ponytail
goto fem_hairUp_1
}“Long Ponytail” {
@ZOFIA changes hair into Long High Ponytail
goto fem_hairUp_1
}“Morning Updo” {
@ZOFIA changes hair into Morning Updo
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Small Bun” {
@ZOFIA changes hair into Small Bun
goto fem_hairUp_1
}“Double Dutch Braids” {
@ZOFIA changes hair into Long Double Dutch Braids
goto fem_hairUp_1
}“Pinup Rolls” {
@ZOFIA changes hair into Pinup Victory Rolls
goto fem_hairUp_1
}“Sleek Ponytail” {
@ZOFIA changes hair into Sleek Ponytail
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Shoulder Braid” {
@ZOFIA changes hair into Over Shoulder Braid
goto fem_hairUp_1
}“Full Pigtail” {
@ZOFIA changes hair into Full Pigtail
goto fem_hairUp_1
}“Updo Braids” {
@ZOFIA changes hair into Braids Updo
goto fem_hairUp_1
}“Double Buns” {
@ZOFIA changes hair into Double Buns
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Double Afro Puffs” {
@ZOFIA changes hair into Curly Double Afro Puffs
goto fem_hairUp_1
}“Curly Bun Half-up” {
@ZOFIA changes hair into Medium Shoulder Curly Bun Hair
goto fem_hairUp_1
}“Messy Sock Bun” {
@ZOFIA changes hair into Messy Sock Bun
goto fem_hairUp_1
}“Messy Ponytail” {
@ZOFIA changes hair into Short Messy Pony Tail
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Blunt Bangs Ponytail” {
@ZOFIA changes hair into Pony Tail Blunt Bangs
goto fem_hairUp_1
}“Side Swept Updo” {
@ZOFIA changes hair into Side Swept Updo Long
goto fem_hairUp_1
}“Long Wavy Updo” {
@ZOFIA changes hair into Updo Pony Wavy Long
goto fem_hairUp_1
}“Punk Hair” {
@ZOFIA changes hair into Cropped Punk Cut
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Updo Low Bun” {
@ZOFIA changes hair into Updo
goto fem_hairUp_1
}“Updo Curly Messy” {
@ZOFIA changes hair into Updo Curly Messy
goto fem_hairUp_1
}“Updo Twist Bangs” {
@ZOFIA changes hair into Updo High Twist Bangs Blunt
goto fem_hairUp_1
}“Spiral Pigtail” {
@ZOFIA changes hair into High Spiral Pigtail Hair
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Updo Princess Braid” {
@ZOFIA changes hair into Long Updo Wavy Princess Braid
goto fem_hairUp_1
}“Natural Curly Updo” {
@ZOFIA changes hair into Natural Curly Pulled Updo Hair
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
####################### HAIR COLOR #######################
label fem_haircolor_1
NARRATOR
All hair colors.
choice
“Dark”{
goto fem_hairDark_1
}“Light” {
goto fem_hairLight_1
}“Dyed”{
goto fem_hairDye_1
}“Done”{
goto female_custom_1
} “Back to Styles” {
goto fem_hair_1
}
label fem_hairDark_1
NARRATOR
Dark hair colors.
choice [shouldPaginate: YES]
“Light Brown” {
@ZOFIA changes hairColor into Light Brown
goto fem_hairDark_1
}“Warm Brown” {
@ZOFIA changes hairColor into Medium Warm Brown
goto fem_hairDark_1
}“Medium Brown” {
@ZOFIA changes hairColor into Medium Brown
goto fem_hairDark_1
}“Chestnut Brown”{
@ZOFIA changes hairColor into Chestnut Brown
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Dark Brown”{
@ZOFIA changes hairColor into Dark Brown
goto fem_hairDark_1
}“Brunette Brown”{
@ZOFIA changes hairColor into Brunette Brown
goto fem_hairDark_1
}“Ginger Red” {
@ZOFIA changes hairColor into Ginger Red
goto fem_hairDark_1
}“Burgundy Red” {
@ZOFIA changes hairColor into Burgundy Red
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Deep Brown” {
@ZOFIA changes hairColor into Deep Brown
goto fem_hairDark_1
}“Brown Black” {
@ZOFIA changes hairColor into Brown Black
goto fem_hairDark_1
}“Dark Black” {
@ZOFIA changes hairColor into Black Dark
goto fem_hairDark_1
}“Jet Black” {
@ZOFIA changes hairColor into Black Jet
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
label fem_hairLight_1
NARRATOR
Light hair colors.
choice [shouldPaginate: YES]
“Platinum Blonde” {
@ZOFIA changes hairColor into Platinum Blonde
goto fem_hairLight_1
}“Dirty Blonde” {
@ZOFIA changes hairColor into Dirty Blonde
goto fem_hairLight_1
}“Honey Blonde” {
@ZOFIA changes hairColor into Honey Blonde
goto fem_hairLight_1
}“Strawberry Blonde” {
@ZOFIA changes hairColor into Strawberry Blonde
goto fem_hairLight_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Medium Blonde” {
@ZOFIA changes hairColor into Blonde Medium
goto fem_hairLight_1
}“Ash Blonde” {
@ZOFIA changes hairColor into Ash Blonde
goto fem_hairLight_1
}“Peach Blonde” {
@ZOFIA changes hairColor into Peach Blonde
goto fem_hairLight_1
}“Platinum White” {
@ZOFIA changes hairColor into Platinum White
goto fem_hairLight_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
label fem_hairDye_1
NARRATOR
Dyed hair colors.
choice
“Pink/Purple” {
goto fem_hairDye_Pink_1
}“Blue/Green” {
goto fem_hairDye_Blue_1
}“Red/Yellow” {
goto fem_hairDye_Red_1
}“White/Grey” {
goto fem_hairDye_White_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
label fem_hairDye_Pink_1
NARRATOR
Pink and purple hair colors.
choice [shouldPaginate: YES]
“Hot Pink” {
@ZOFIA changes hairColor into Hot Pink
goto fem_hairDye_Pink_1
} “Light Pink” {
@ZOFIA changes hairColor into Pink Lt
goto fem_hairDye_Pink_1
} “Warm Pink” {
@ZOFIA changes hairColor into Warm Pink
goto fem_hairDye_Pink_1
} “Rose Gold” {
@ZOFIA changes hairColor into Rose Gold
goto fem_hairDye_Pink_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Purple” {
@ZOFIA changes hairColor into Red Purple
goto fem_hairDye_Pink_1
} “Purple Lilac” {
@ZOFIA changes hairColor into Purple Lilac
goto fem_hairDye_Pink_1
} “Plum” {
@ZOFIA changes hairColor into Plum
goto fem_hairDye_Pink_1
} “Dark Purple” {
@ZOFIA changes hairColor into Purple
goto fem_hairDye_Pink_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Pastel Lavender” {
@ZOFIA changes hairColor into Pastel Purple Lavender
goto fem_hairDye_Pink_1
}“Done” {
goto female_custom_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}
label fem_hairDye_Blue_1
NARRATOR
Blue and green hair colors.
choice [shouldPaginate: YES]
“Blue” {
@ZOFIA changes hairColor into Blue
goto fem_hairDye_Blue_1
} “Light Blue” {
@ZOFIA changes hairColor into Cornflower Blue
goto fem_hairDye_Blue_1
} “Aqua Blue” {
@ZOFIA changes hairColor into Aqua Blue
goto fem_hairDye_Blue_1
} “Dark Blue” {
@ZOFIA changes hairColor into Blue Black
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Green” {
@ZOFIA changes hairColor into Green
goto fem_hairDye_Blue_1
} “Lime Green” {
@ZOFIA changes hairColor into Yellow Green
goto fem_hairDye_Blue_1
} “Mint” {
@ZOFIA changes hairColor into Mint
goto fem_hairDye_Blue_1
} “Aqua Green” {
@ZOFIA changes hairColor into Aqua Green
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Pastel Blue” {
@ZOFIA changes hairColor into Pastel Blue
goto fem_hairDye_Blue_1
} “Pastel Mint” {
@ZOFIA changes hairColor into Pastel Mint
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
label fem_hairDye_Red_1
NARRATOR
Red, yellow, & orange hair colors.
choice [shouldPaginate: YES]
“Yellow” {
@ZOFIA changes hairColor into Yellow
goto fem_hairDye_Red_1
} “Orange” {
@ZOFIA changes hairColor into Orange
goto fem_hairDye_Red_1
} “Red” {
@ZOFIA changes hairColor into Red
goto fem_hairDye_Red_1
} “Copper Red” {
@ZOFIA changes hairColor into Copper Red
goto fem_hairDye_Red_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
label fem_hairDye_White_1
NARRATOR
White & grey hair colors.
choice [shouldPaginate: YES]
“Grey” {
@ZOFIA changes hairColor into Cool Gray
goto fem_hairDye_White_1
} “Light Grey” {
@ZOFIA changes hairColor into Aqua Gray
goto fem_hairDye_White_1
}“White” {
@ZOFIA changes hairColor into Warm White
goto fem_hairDye_White_1
}“Ice” {
@ZOFIA changes hairColor into Platinum Ice
goto fem_hairDye_White_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
label female_1_end
NARRATOR
Is this the right look for her?
choice
“Yes!” {
@ZOFIA is primp_neutral
goto the_adventure_begins
} “No.” {
goto female_custom_1
}
} else {
label female_custom_1
@GRETA spot 2.400 170 -520 and GRETA faces right and GRETA starts idle
NARRATOR
What do you want to change?
choice
“Skin Tone” {
goto fem_skin_1
}“Eyes” {
goto fem_eyes_1
}“Face” {
goto fem_face_1
} “Nose” {
goto fem_nose_1
} “Lips” {
goto fem_mouth_1
} “This is perfect!” {
goto female_1_end
}
####################### SKIN COLOR #######################
label fem_skin_1
NARRATOR
All skin tones.
choice
“Neutral Shades” {
goto fem_neutralskin_1
} “Rose Shades” {
goto fem_roseskin_1
} “Gold Shades” {
goto fem_goldskin_1
} “Copper Shades” {
goto fem_copperskin_1
} “Ash Shades” {
goto fem_ashskin_1
} “Done” {
goto female_custom_1
}
label fem_neutralskin_1
NARRATOR
Neutral skin tones.
choice [shouldPaginate: YES]
“Neutral 00” {
@GRETA changes bodyColor into Neutral 00
goto fem_neutralskin_1
} “Neutral 01” {
@GRETA changes bodyColor into Neutral 01
goto fem_neutralskin_1
} “Neutral 02” {
@GRETA changes bodyColor into Neutral 02
goto fem_neutralskin_1
} “Neutral 03” {
@GRETA changes bodyColor into Neutral 03
goto fem_neutralskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Neutral 04” {
@GRETA changes bodyColor into Neutral 04
goto fem_neutralskin_1
} “Neutral 05” {
@GRETA changes bodyColor into Neutral 05
goto fem_neutralskin_1
} “Neutral 06” {
@GRETA changes bodyColor into Neutral 06
goto fem_neutralskin_1
} “Neutral 07” {
@GRETA changes bodyColor into Neutral 07
goto fem_neutralskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Neutral 08” {
@GRETA changes bodyColor into Neutral 08
goto fem_neutralskin_1
} “Neutral 09” {
@GRETA changes bodyColor into Neutral 09
goto fem_neutralskin_1
} “Neutral 10” {
@GRETA changes bodyColor into Neutral 10
goto fem_neutralskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}
label fem_roseskin_1
NARRATOR
Rose skin tones.
choice [shouldPaginate: YES]
“Rose 00” {
@GRETA changes bodyColor into Rose 00
goto fem_roseskin_1
} “Rose 01” {
@GRETA changes bodyColor into Rose 01
goto fem_roseskin_1
} “Rose 02” {
@GRETA changes bodyColor into Rose 02
goto fem_roseskin_1
} “Rose 03” {
@GRETA changes bodyColor into Rose 03
goto fem_roseskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Rose 04” {
@GRETA changes bodyColor into Rose 04
goto fem_roseskin_1
} “Rose 05” {
@GRETA changes bodyColor into Rose 05
goto fem_roseskin_1
} “Rose 06” {
@GRETA changes bodyColor into Rose 06
goto fem_roseskin_1
} “Rose 07” {
@GRETA changes bodyColor into Rose 07
goto fem_roseskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Rose 08” {
@GRETA changes bodyColor into Rose 08
goto fem_roseskin_1
} “Rose 09” {
@GRETA changes bodyColor into Rose 09
goto fem_roseskin_1
} “Rose 10” {
@GRETA changes bodyColor into Rose 10
goto fem_roseskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}
label fem_goldskin_1
NARRATOR
Gold skin tones.
choice [shouldPaginate: YES]
“Gold 00” {
@GRETA changes bodyColor into Gold 00
goto fem_goldskin_1
} “Gold 01” {
@GRETA changes bodyColor into Gold 01
goto fem_goldskin_1
} “Gold 02” {
@GRETA changes bodyColor into Gold 02
goto fem_goldskin_1
} “Gold 03” {
@GRETA changes bodyColor into Gold 03
goto fem_goldskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Gold 04” {
@GRETA changes bodyColor into Gold 04
goto fem_goldskin_1
} “Gold 05” {
@GRETA changes bodyColor into Gold 05
goto fem_goldskin_1
} “Gold 06” {
@GRETA changes bodyColor into Gold 06
goto fem_goldskin_1
} “Gold 07” {
@GRETA changes bodyColor into Gold 07
goto fem_goldskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Gold 08” {
@GRETA changes bodyColor into Gold 08
goto fem_goldskin_1
} “Gold 09” {
@GRETA changes bodyColor into Gold 09
goto fem_goldskin_1
} “Gold 10” {
@GRETA changes bodyColor into Gold 10
goto fem_goldskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}
label fem_copperskin_1
NARRATOR
Copper skin tones.
choice [shouldPaginate: YES]
“Copper 00” {
@GRETA changes bodyColor into Copper 00
goto fem_copperskin_1
} “Copper 01” {
@GRETA changes bodyColor into Copper 01
goto fem_copperskin_1
} “Copper 02” {
@GRETA changes bodyColor into Copper 02
goto fem_copperskin_1
} “Copper 03” {
@GRETA changes bodyColor into Copper 03
goto fem_copperskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Copper 04” {
@GRETA changes bodyColor into Copper 04
goto fem_copperskin_1
} “Copper 05” {
@GRETA changes bodyColor into Copper 05
goto fem_copperskin_1
} “Copper 06” {
@GRETA changes bodyColor into Copper 06
goto fem_copperskin_1
} “Copper 07” {
@GRETA changes bodyColor into Copper 07
goto fem_copperskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Copper 08” {
@GRETA changes bodyColor into Copper 08
goto fem_copperskin_1
} “Copper 09” {
@GRETA changes bodyColor into Copper 09
goto fem_copperskin_1
} “Copper 10” {
@GRETA changes bodyColor into Copper 10
goto fem_copperskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}
label fem_ashskin_1
NARRATOR
Ash skin tones.
choice [shouldPaginate: YES]
“Ash 00” {
@GRETA changes bodyColor into Ash 00
goto fem_ashskin_1
} “Ash 01” {
@GRETA changes bodyColor into Ash 01
goto fem_ashskin_1
} “Ash 02” {
@GRETA changes bodyColor into Ash 02
goto fem_ashskin_1
} “Ash 03” {
@GRETA changes bodyColor into Ash 03
goto fem_ashskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Ash 04” {
@GRETA changes bodyColor into Ash 04
goto fem_ashskin_1
} “Ash 05” {
@GRETA changes bodyColor into Ash 05
goto fem_ashskin_1
} “Ash 06” {
@GRETA changes bodyColor into Ash 06
goto fem_ashskin_1
} “Ash 07” {
@GRETA changes bodyColor into Ash 07
goto fem_ashskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Ash 08” {
@GRETA changes bodyColor into Ash 08
goto fem_ashskin_1
} “Ash 09” {
@GRETA changes bodyColor into Ash 09
goto fem_ashskin_1
} “Ash 10” {
@GRETA changes bodyColor into Ash 10
goto fem_ashskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}
####################### FACE SHAPE #######################
label fem_face_1
NARRATOR
Face shapes.
choice [shouldPaginate: YES]
“Diamond” {
@GRETA changes face into Diamond
goto fem_face_1
} “Long Diamond” {
@GRETA changes face into Diamond Long
goto fem_face_1
} “Defined Diamond” {
@GRETA changes face into Diamond Defined Contour
goto fem_face_1
} “Defined Heart” {
@GRETA changes face into Heart Defined
goto fem_face_1
} “Defined Squared” {
@GRETA changes face into Square Defined
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Soft Heart” {
@GRETA changes face into Heart Soft
goto fem_face_1
} “Defined Triangle” {
@GRETA changes face into Triangle Defined
goto fem_face_1
} “Mature Square” {
@GRETA changes face into Square Mature
goto fem_face_1
} “Mature Heart” {
@GRETA changes face into Heart Mature
goto fem_face_1
} “Soft Round” {
@GRETA changes face into Round Soft
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Soft” {
@GRETA changes face into Square Soft
goto fem_face_1
} “Round Puffy” {
@GRETA changes face into Round Puffy Cheek
goto fem_face_1
} “Heart Double Chin” {
@GRETA changes face into Heart Mature Double Chin
goto fem_face_1
} “Round Double Chin” {
@GRETA changes face into Round Double Chin
goto fem_face_1
} “Long Double Chin” {
@GRETA changes face into Long Double Chin
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Youth” {
@GRETA changes face into Square Youthful
goto fem_face_1
} “Square Aged” {
@GRETA changes face into Square Aged
goto fem_face_1
} “Square Chiseled” {
@GRETA changes face into Square Chiseled
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Triangle Chiseled” {
@GRETA changes face into Triangle Chiseled
goto fem_face_1
}
####################### EYE SHAPE #######################
label fem_eyes_1
NARRATOR
Eye shapes.
choice [shouldPaginate: YES]
“Round Wide” {
@GRETA changes eyes into Round Downturned Wide
goto fem_eyes_1
} “Round Medium” {
@GRETA changes eyes into Round Medium
goto fem_eyes_1
} “Sharp Almond” {
@GRETA changes eyes into Sharp Almond
goto fem_eyes_1
} “Generic” {
@GRETA changes eyes into Female Generic
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Downturned” {
@GRETA changes eyes into Deepset Downturned
goto fem_eyes_1
} “Deepset Wide” {
@GRETA changes eyes into Deepset Upturned Wide
goto fem_eyes_1
} “Deepset Almond” {
@GRETA changes eyes into Deepset Almond
goto fem_eyes_1
} “Monolid Defined” {
@GRETA changes eyes into Monolid Defined
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Monolid Slender” {
@GRETA changes eyes into Monolid Slender
goto fem_eyes_1
} “Angular Slender” {
@GRETA changes eyes into Angular Slender
goto fem_eyes_1
} “Almond Slender” {
@GRETA changes eyes into Hooded Slender Almond
goto fem_eyes_1
} “Almond Slender Eyeliner” {
@GRETA changes eyes into Hooded Slender Almond Eyeliner
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Mature” {
@GRETA changes eyes into Deepset Mature
goto fem_eyes_1
} “Deepset Smokey Eye” {
@GRETA changes eyes into Deep Set False Lashes Smokey Eye
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
####################### EYE COLOR #######################
label fem_eyecolor_1
NARRATOR
Eye colors.
choice [shouldPaginate: YES]
“Black” {
@GRETA changes eyesColor into Brown Black
goto fem_eyecolor_1
} “Dark Brown” {
@GRETA changes eyesColor into Brown Dark
goto fem_eyecolor_1
} “Light Brown” {
@GRETA changes eyesColor into Brown Light
goto fem_eyecolor_1
} “Pale Brown” {
@GRETA changes eyesColor into Brown Pale
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Ice Blue” {
@GRETA changes eyesColor into Ice Blue
goto fem_eyecolor_1
} “Aqua Blue” {
@GRETA changes eyesColor into Blue Aqua
goto fem_eyecolor_1
} “Deep Blue” {
@GRETA changes eyesColor into Blue Deep
goto fem_eyecolor_1
} “Blue Green” {
@GRETA changes eyesColor into Blue Green
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Silver” {
@GRETA changes eyesColor into Grey Cool
goto fem_eyecolor_1
} “Green” {
@GRETA changes eyesColor into Green Emerald
goto fem_eyecolor_1
} “Hazel” {
@GRETA changes eyesColor into Hazel
goto fem_eyecolor_1
} “Dark Hazel” {
@GRETA changes eyesColor into Hazel Dark
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Red” {
@GRETA changes eyesColor into Red
goto fem_eyecolor_1
} “Violet” {
@GRETA changes eyesColor into Violet
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
####################### MOUTH SHAPE #######################
label fem_mouth_1
NARRATOR
Lip shapes.
choice [shouldPaginate: YES]
“Full Heart” {
@GRETA changes mouth into Full Heart Pouty
goto fem_mouth_1
}“Full Round” {
@GRETA changes mouth into Full Round Pouty
goto fem_mouth_1
}“Medium Heart” {
@GRETA changes mouth into Medium Heart Natural
goto fem_mouth_1
}“Medium Thin” {
@GRETA changes mouth into Medium Thin
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
“Thin Heart” {
@GRETA changes mouth into Thin Heart
goto fem_mouth_1
}“Small Heart” {
@GRETA changes mouth into Small Heart
goto fem_mouth_1
}“Flat Round” {
@GRETA changes mouth into Full Round Flat Top Skin
goto fem_mouth_1
}“Medium Downturned” {
@GRETA changes mouth into Medium Downturned Pout
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
“Full Flat Top” {
@GRETA changes mouth into Full Flat Top Pouty
goto fem_mouth_1
}“Full Wide” {
@GRETA changes mouth into Full Wide
goto fem_mouth_1
}“Heart Shaped” {
@GRETA changes mouth into Heart Shaped Pout
goto fem_mouth_1
}“Heart with Braces” {
@GRETA changes mouth into Heart Shaped Pout Braces
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
####################### MOUTH COLOR #######################
label fem_mouthcolor_1
NARRATOR
All lip colors.
choice
“Natural” {
goto fem_NaturalColors_1
} “Gloss” {
goto fem_GlossColors_1
} “Matte” {
goto fem_MatteColors_1
} “Done” {
goto female_custom_1
} “Lip Shapes” {
goto fem_mouth_1
}
label fem_NaturalColors_1
NARRATOR
Natural lip colors.
choice [shouldPaginate: YES]
“Fair Rose” {
@GRETA changes mouthColor into Fair Rose Matte
goto fem_NaturalColors_1
} “Fair Neutral” {
@GRETA changes mouthColor into Fair Neutral Matte
goto fem_NaturalColors_1
} “Fair Gold” {
@GRETA changes mouthColor into Fair Gold Matte
goto fem_NaturalColors_1
} “Beige Light Gold” {
@GRETA changes mouthColor into Beige Light Gold Matte
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Beige Gold” {
@GRETA changes mouthColor into Beige Gold Matte
goto fem_NaturalColors_1
} “Beige Rose” {
@GRETA changes mouthColor into Beige Rose
goto fem_NaturalColors_1
} “Beige Deep Neutral” {
@GRETA changes mouthColor into Beige Deep Neutral
goto fem_NaturalColors_1
} “Tan Deep Gold” {
@GRETA changes mouthColor into Tan Deep Gold
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Tan Deep Neutral” {
@GRETA changes mouthColor into Tan Deep Neutral
goto fem_NaturalColors_1
} “Brown Neutral” {
@GRETA changes mouthColor into Brown Neutral
goto fem_NaturalColors_1
} “Brown Gold” {
@GRETA changes mouthColor into Brown Gold
goto fem_NaturalColors_1
} “Brown Deep Gold” {
@GRETA changes mouthColor into Brown Deep Gold
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Brown Deep Rose” {
@GRETA changes mouthColor into Brown Deep Rose
goto fem_NaturalColors_1
} “Done” {
goto female_custom_1
} “Try Other Colors” {
goto fem_mouthcolor_1
}
label fem_GlossColors_1
NARRATOR
Gloss lipstick colors.
choice [shouldPaginate: YES]
“Peach” {
@GRETA changes mouthColor into Peach Gloss
goto fem_GlossColors_1
} “Light Peach” {
@GRETA changes mouthColor into Pink Peach Lt Gloss
goto fem_GlossColors_1
} “Beige Pink” {
@GRETA changes mouthColor into Pink Beige Gloss
goto fem_GlossColors_1
} “Medium Pink” {
@GRETA changes mouthColor into Pink Medium Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Warm Pink” {
@GRETA changes mouthColor into Pink Warm Gloss
goto fem_GlossColors_1
} “Hot Pink” {
@GRETA changes mouthColor into Pink Hot Gloss
goto fem_GlossColors_1
} “Deep Pink” {
@GRETA changes mouthColor into Pink Deep Gloss
goto fem_GlossColors_1
} “Pink Peach” {
@GRETA changes mouthColor into Pink Peach Medium Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Neutral Nude” {
@GRETA changes mouthColor into Neutral Medium Nude Gloss
goto fem_GlossColors_1
} “Light Nude” {
@GRETA changes mouthColor into Rose Light Nude Gloss
goto fem_GlossColors_1
} “Medium Nude” {
@GRETA changes mouthColor into Rose Medium Nude Gloss
goto fem_GlossColors_1
} “Dark Nude” {
@GRETA changes mouthColor into Rose Dark Nude Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Rose” {
@GRETA changes mouthColor into Rose Gloss
goto fem_GlossColors_1
} “Mauve” {
@GRETA changes mouthColor into Mauve Gloss
goto fem_GlossColors_1
} “Pastel Purple” {
@GRETA changes mouthColor into Purple Pastel Gloss
goto fem_GlossColors_1
} “Deep Purple” {
@GRETA changes mouthColor into Purple Deep Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Red” {
@GRETA changes mouthColor into Red Gloss
goto fem_GlossColors_1
} “Deep Red” {
@GRETA changes mouthColor into Red Deep Gloss
goto fem_GlossColors_1
} “Plum” {
@GRETA changes mouthColor into Plum Gloss
goto fem_GlossColors_1
} “Violet” {
@GRETA changes mouthColor into Violet Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Blood Orange” {
@GRETA changes mouthColor into Blood Orange Gloss
goto fem_GlossColors_1
} “Red Garnet” {
@GRETA changes mouthColor into Red Garnet Gloss
goto fem_GlossColors_1
} “Blackberry” {
@GRETA changes mouthColor into Blackberry Gloss
goto fem_GlossColors_1
} “Pink Cashmere” {
@GRETA changes mouthColor into Pink Cashmere Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Ash Deep” {
@GRETA changes mouthColor into Ash Deep Gloss
goto fem_GlossColors_1
} “Dark Mauve” {
@GRETA changes mouthColor into Dark Mauve Gloss
goto fem_GlossColors_1
} “Dark Amethyst” {
@GRETA changes mouthColor into Dark Amethyst Gloss
goto fem_GlossColors_1
} “Royal Blue” {
@GRETA changes mouthColor into Royal Blue Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Dark Apricot” {
@GRETA changes mouthColor into Dark Apricot Gloss
goto fem_GlossColors_1
} “Copper Deep” {
@GRETA changes mouthColor into Copper Deep Gloss
goto fem_GlossColors_1
} “Gold Deep” {
@GRETA changes mouthColor into Gold Deep Gloss
goto fem_GlossColors_1
} “Black” {
@GRETA changes mouthColor into Black Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
label fem_MatteColors_1
NARRATOR
Matte lipstick colors.
choice [shouldPaginate: YES]
“Peach” {
@GRETA changes mouthColor into Peach Matte
goto fem_MatteColors_1
} “Light Peach” {
@GRETA changes mouthColor into Pink Peach Light Matte
goto fem_MatteColors_1
} “Beige Pink” {
@GRETA changes mouthColor into Pink Beige Matte
goto fem_MatteColors_1
} “Medium Pink” {
@GRETA changes mouthColor into Pink Medium Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Warm Pink” {
@GRETA changes mouthColor into Pink Warm Matte
goto fem_MatteColors_1
} “Hot Pink” {
@GRETA changes mouthColor into Pink Hot Matte
goto fem_MatteColors_1
} “Deep Pink” {
@GRETA changes mouthColor into Pink Deep Matte
goto fem_MatteColors_1
} “Pink Peach” {
@GRETA changes mouthColor into Pink Peach Medium Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Neutral Nude” {
@GRETA changes mouthColor into Neutral Medium Nude Matte
goto fem_MatteColors_1
} “Light Nude” {
@GRETA changes mouthColor into Rose Light Nude Matte
goto fem_MatteColors_1
} “Medium Nude” {
@GRETA changes mouthColor into Rose Medium Nude Matte
goto fem_MatteColors_1
} “Dark Nude” {
@GRETA changes mouthColor into Rose Dark Nude Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Rose” {
@GRETA changes mouthColor into Rose Matte
goto fem_MatteColors_1
} “Mauve” {
@GRETA changes mouthColor into Mauve Matte
goto fem_MatteColors_1
} “Pastel Purple” {
@GRETA changes mouthColor into Purple Pastel Matte
goto fem_MatteColors_1
} “Deep Purple” {
@GRETA changes mouthColor into Purple Deep Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Red” {
@GRETA changes mouthColor into Red Matte
goto fem_MatteColors_1
} “Deep Red” {
@GRETA changes mouthColor into Red Deep Matte
goto fem_MatteColors_1
} “Plum” {
@GRETA changes mouthColor into Plum Matte
goto fem_MatteColors_1
} “Violet” {
@GRETA changes mouthColor into Violet Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Blood Orange” {
@GRETA changes mouthColor into Blood Orange Matte
goto fem_MatteColors_1
} “Red Garnet” {
@GRETA changes mouthColor into Red Garnet Matte
goto fem_MatteColors_1
} “Blackberry” {
@GRETA changes mouthColor into Blackberry Matte
goto fem_MatteColors_1
} “Pink Cashmere” {
@GRETA changes mouthColor into Pink Cashmere Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Ash Deep” {
@GRETA changes mouthColor into Ash Deep Matte
goto fem_MatteColors_1
} “Dark Mauve” {
@GRETA changes mouthColor into Dark Mauve Matte
goto fem_MatteColors_1
} “Dark Amethyst” {
@GRETA changes mouthColor into Dark Amethyst Matte
goto fem_MatteColors_1
} “Royal Blue” {
@GRETA changes mouthColor into Royal Blue Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Dark Apricot” {
@GRETA changes mouthColor into Dark Apricot Matte
goto fem_MatteColors_1
} “Copper Deep” {
@GRETA changes mouthColor into Copper Deep Matte
goto fem_MatteColors_1
} “Gold Deep” {
@GRETA changes mouthColor into Gold Deep Matte
goto fem_MatteColors_1
} “Black” {
@GRETA changes mouthColor into Black Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
####################### NOSE SHAPE #######################
label fem_nose_1
NARRATOR
Nose shapes.
choice [shouldPaginate: YES]
“Defined Natural” {
@GRETA changes nose into Defined Natural
goto fem_nose_1
} “Grecian Soft” {
@GRETA changes nose into Grecian Soft
goto fem_nose_1
} “Round Broad” {
@GRETA changes nose into Round Broad
goto fem_nose_1
} “Round Button” {
@GRETA changes nose into Round Button
goto fem_nose_1
} “Round Button Upturned” {
@GRETA changes nose into Round Button Upturned
goto fem_nose_1
} “Done”{
goto female_custom_1
}
“Round Downturned” {
@GRETA changes nose into Round Downturned
goto fem_nose_1
} “Round Flared Upturned” {
@GRETA changes nose into Round Flared Upturned
goto fem_nose_1
} “Round Flared Downturned” {
@GRETA changes nose into Round Flared Downturned
goto fem_nose_1
} “Pointed Downturned” {
@GRETA changes nose into Pointed Downturned
goto fem_nose_1
} “Broad Wide” {
@GRETA changes nose into Broad Wide
goto fem_nose_1
} “Done”{
goto female_custom_1
}
label female_1_end
NARRATOR
Is this the right look for her?
choice
“Yes!” {
@GRETA is primp_neutral
} “No.” {
goto female_custom_1
}
} “No, I don’t want to customize.” {
goto the_adventure_begins
}
label the_adventure_begins
NARRATOR
Great. Let's go!
@pause for a beat
you cant have labeles inside a choice - that you inserted the CC inside the choice will cause error
you have to put it outside
also you use the same template with the same labes for different characters - this will also cause error because of duplicite lables - you need to use daras template for multiple characters instead.
I can make you the basic template for this so you will know where to put the CC and so…just show me the first choice with the races.