On the mesa, you see your friend, Francisco. "Hola, do you want to play a game I just learned?" You ask how to play.
"When it's your turn you can say either uno, dos, or tres and that gets added to the total. Whoever first gets to veintetres wins!"
Do you want to [[play]] or [[no]]?
{(set: $number to (array: "uno", "dos", "tres", "cuatro", "cinco", "seis", "siete", "ocho", "nueve", "diez", "once", "doce", "trece", "catorce", "quince", "dieciseis", "diecisiete", "dieciocho", "diecinueve", "veinte", "veintiuno", "veintidos", "veintitres"))}"Okay, do [[you|you start]] want to start or should [[I start]]?"
(set: $total to 0)
(set: $add to 0)"Okay, see you around.""You can say [[uno]], [[dos]], or [[tres]].""Hmmm ..."
|more>[]
(live: 3s)[
(replace: ?more)["I say tres"<br><br>"You can say [[uno]], [[dos]], or [[tres]]."]
(stop:)
]
(set: $total to 3)(set: $total to $total + 1)
(if: $total < 20)[(goto: "next")]
(else-if: $total is 23)[(goto: "lose")]
(else:)[(goto: "win")](set: $total to $total + 2)
(if: $total < 20)[(goto: "next")]
(else-if: $total is 23)[(goto: "lose")]
(else:)[(goto: "win")](set: $total to $total + 3)
(if: $total < 20)[(goto: "next")]
(else-if: $total is 23)[(goto: "lose")]
(else:)[(goto: "win")]Double-click this passage to edit it.The total after your turn is (print: $number's ($total))
{(if: $total % 4 is 0)[(set: $add to 3)]
(else-if: $total % 4 is 1)[(set: $add to 2)]
(else-if: $total % 4 is 2)[(set: $add to 1)]
(else:)[(set: $add to (either:1, 2))]}
"Hmmm ..."
|more>[]
(live: 3s)[
(replace: ?more)["I say (print: $number's ($add))"<br><br>You can say [[uno]], [[dos]], or [[tres]].]
(stop:)
]
(set: $total to $total + $add)The total after your turn is (print: $number's ($total))
{(if: $total % 4 is 0)[(set: $add to 3)]
(else-if: $total % 4 is 1)[(set: $add to 2)]
(else:)[(set: $add to 1)]}
"Hmmm ..."
|more>[]
(live: 3s)[
(replace: ?more)["I say (print: $number's ($add))"<br><br>
"That makes veintitres. I win!"<br>
"Do you want to [[play]] again or [[no]]?"]
(stop:)
]"Congratulations, you win!"
"Do you want to [[play]] again or [[no]]?"