I have! Here’s the code I used for the choice
label dressing_game8
@speechbubble reset
NARRATOR
Pick a dress for Ana’s “non-date”.
choice “Flowy Red”{
@ANA is dustoff_neutral_loop
@pause for 1.5
@ANA changes into ANA_date1
@ANA is dustoff_neutral_loop
@pause for 2
goto decide
}
“Tulle Blue”{
@ANA is dustoff_neutral_loop
@pause for 1.5
@ANA changes into ANA_date2
@ANA is dustoff_neutral_loop
@pause for 2
goto decide
}
label decide
ANA (think_rubchin)
(Should I wear this?)
choice
“YES!”{
}
“No, next outfit.” {
goto dressing_game8
}
and then the code I used for the outfit with the jacket
if (dressing_game8 is “Flowy Red”){
@ANA changes into ANA_date1-2
}
elif (dressing_game8 is “Tulle Blue”){
@ANA changes into ANA_date2-2
}