By Dara

 

label open_closet

@CHARACTER starts idle

CHARACTER
What do I want to wear?

choice
<GREEN> "Casual" {
goto fashion_casual
} <GREEN> "Formal" {
goto fashion_formal
} <GREEN> "Going Out" {
goto fashion_out
} <GREEN> "Business" {
goto fashion_business
} <PREMIUM> "Leave Closet" {
goto end_closet
}


####### CASUAL CLOTHES SECTION #######
label fashion_casual

CHARACTER
What casual outfit do I want to wear?

choice [shouldPaginate: YES]
"One" {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} "Two" {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} "Three" {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} "Four" {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} <GREEN> "Try a different style!" {
goto open_closet
} <PREMIUM> "Wear this!" {
goto end_closet
}


####### FORMAL CLOTHES SECTION #######
label fashion_formal

CHARACTER
What formal outfit do I want to wear?

choice [shouldPaginate: YES]
"One" {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} "Two" {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} "Three" {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} "Four" {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} <GREEN> "Try a different style!" {
goto open_closet
} <PREMIUM> "Wear this!" {
goto end_closet
}


####### GOING OUT CLOTHES SECTION #######
label fashion_out

CHARACTER
What going out outfit do I want to wear?

choice [shouldPaginate: YES]
"One" {
@CHARACTER changes into Outfit_Name
goto fashion_out
} "Two" {
@CHARACTER changes into Outfit_Name
goto fashion_out
} "Three" {
@CHARACTER changes into Outfit_Name
goto fashion_out
} "Four" {
@CHARACTER changes into Outfit_Name
goto fashion_out
} <GREEN> "Try a different style!" {
goto open_closet
} <PREMIUM> "Wear this!" {
goto end_closet
}


####### BUSINESS CLOTHES SECTION #######
label fashion_business

@CHARACTER starts idle_happy
NARRATOR
What business outfit do I want to wear?

choice [shouldPaginate: YES]
"One" {
@CHARACTER changes into Outfit_Name
goto fashion_business
} "Two" {
@CHARACTER changes into Outfit_Name
goto fashion_business
} "Three" {
@CHARACTER changes into Outfit_Name
goto fashion_business
} "Four" {
@CHARACTER changes into Outfit_Name
goto fashion_business
} <GREEN> "Try a different style!" {
goto open_closet
} <PREMIUM> "Wear this!" {
goto end_closet
}


####### END OF CLOSET SECTION #######
label end_closet

CHARACTER
Is this the look I'm going for?

choice
<PREMIUM> "Absolutely!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Closet Template Credit
@CHARACTER is dustoff_neutral_loop
@CHARACTER is primp_neutral
} "No, I want to try something else!" {
goto open_closet
}