Name:<<set _name to "", $rival.name to "Takane">>\
<<textbox "_name" $rival.name>>
Unit:<<set _unit to "", $rival.unit to "Darling ★ Project!">>\
<<textbox "_unit" $rival.unit>>
Hair Color: <<textbox "$rival.hc" $rival.hc>>
Hair Color: <<textbox "$rival.ec" $rival.ec>>
Pronouns: <<listbox "$rivalpronouns" autoselect>>
<<option "she/her">>
<<option "he/him">>
<<option "they/them">>
<<option "custom">>
<</listbox>>
<<button "Custom Pronoun Settings">>
/* Remove any leading and trailing SPACEs */
<<set _name to _name.trim()>>
<<set _unit to _unit.trim()>>
/* Did they actually enter a value? */
<<if _name is "">>
Please fill out all fields.
<<else>>
/* Do any other varification or formating of the value, like Proper-casing it */
<<set _name to _name.toUpperFirst()>>
/* Assign the cleaned and varified value to the Story variable */
<<set $rival.name to _name>>
<<set $rival.unit to _unit>>
<</if>>
/* What to do now? */
<<goto [[custom pronoun settings]]>>
<</button>>
Personality: <<listbox "$rival.personality" autoselect>>
<<option "kind">>
<<option "competitive">>
<<option "distant">>
<</listbox>>
Specialty: <<listbox "$rival.skill" autoselect>>
<<option "vocal">>
<<option "dance">>
<</listbox>>
<<button "Submit">>
/* Remove any leading and trailing SPACEs */
<<set _name to _name.trim()>>
<<set _unit to _unit.trim()>>
/* Did they actually enter a value? */
<<if _name is "">>
Please fill out all fields.
<<else>>
/* Do any other varification or formating of the value, like Proper-casing it */
<<set _name to _name.toUpperFirst()>>
/* Assign the cleaned and varified value to the Story variable */
<<set $rival.name to _name>>
<<set $rival.unit to _unit>>
<</if>>
/* What to do now? */
<<if $rivalpronouns is "he/him">>
<<set $rival.they to "he">>
<<set $rival.them to "him">>
<<set $rival.their to "his">>
<<set $rival.theyare to "he is">>
<<set $rival.self to "himself">>
<</if>>
<<if $rivalpronouns is "she/her">>
<<set $rival.they to "she">>
<<set $rival.them to "her">>
<<set $rival.their to "her">>
<<set $rival.theyare to "she is">>
<<set $rival.self to "herself">>
<</if>>
<<if $rivalpronouns is "they/them">>
<<set $rival.they to "they">>
<<set $rival.them to "them">>
<<set $rival.their to "their">>
<<set $rival.theyare to "they are">>
<<set $rival.self to "themself">>
<</if>>
<<goto [[Meet Rival]]>>
<</button>><<set $rival = {name: "Takane", she: "she", her: "her", unit: "Darling ★ Project!", skill: "dance", personality: "kind", ec: "purple", hc: "silver"}>>The favorite to win this competition is $rival.name of $rival.unit. <<print $rival.theyare.toUpperFirst()>> favored for $rival.their skills as $rival.unit's $rival.skill expert.
$rival.name steps into the room, $rival.their $rival.ec eyes shining <<if $rival.personality is "competitive">>fiercely.<</if>><<if $rival.personality is "distant">>fiercely.<</if>><<if $rival.personality is "kind">>with excitement.<</if>>
<<switch $rival.personality>>
<<case kind>>$rival.name: "Nice to meet you! Let's have fun today."
<<case competitive>>$rival.name: "Don't feel too bad when you lose."
<<case distant>>$rival.name: "..."
It seems as if your presence doesn't even register to $rival.them.
<<default>>$rival.name greets you.
<</switch>>Please put your character's pronouns that fit each following sentence.
\_____ walked to school.
<<textbox "_they" they>>
I got singing lessons from \____.
<<textbox "_them" them>>
I met \____ brother for the first time.
<<textbox "_their" their>>
\______ \___ working on their new dance routine.
<<textbox "_theyare" "they are">>
They did it \______.
<<textbox "_themself" "themself">>
<<button "Submit">>
/* Remove any leading and trailing SPACEs */
<<set _they to _they.trim()>>
<<set _them to _them.trim()>>
<<set _their to _their.trim()>>
<<set _theyare to _theyare.trim()>>
<<set _themself to _themself.trim()>>
/* Did they actually enter a value? */
<<if _they is "">>
Please fill out all fields.
<<else>>
/* Assign the cleaned and varified value to the Story variable */
<<set $rival.they to _they>>
<<set $rival.them to _them>>
<<set $rival.their to _their>>
<<set $rival.theyare to _theyare>>
<<set $rival.self to _themself>>
/* What to do now? */
<<goto [[Untitled Passage]]>>
<</if>>
<</button>>$rival.name woke up and brushed $rival.their teeth. Then $rival.they made $rival.self an omelet for breakfast. <<print $rival.they.toUpperFirst()>> had a packed day, first going to the office to meet with $rival.their fellow groupmates, then to dance practice for a few hours. <<print $rival.they.toUpperFirst()>> ate lunch with the rest of $rival.their group before taking the rest of $rival.their break hour to study up on $rival.their competition in the next dance contest.