<div>
<img src="img/start.jpg" class="center">
Do you wanna build a snowman?
[[Yes|Snowman]]
[[No|Negative Question]]
[[Maybe]]
[[I don't know]]
[[Can you repeat the question?|Start]]
</div><div>
<img src="img/snowman.png" class="center full">
You built a snowman!
</div><div>
<img src="img/positive.jpg" class="center">
<%
var positive = [
"It'd be nice to build a snowman, right?",
"This is good weather to build a snowman, right?",
"Do you feel like building a snowman?",
"Do you think we should build a snowman?",
"I think we should build a snowman. Do you agree?",
"Are you not sure you do not want to build a snowman?",
"Are you not really sure you do not want to build a snowman?"
];
var randomInt = _.random(0, positive.length-1);
print(positive[randomInt]);
%>
[[Yes|Snowman]]
[[No|Negative Question]]
[[Maybe]]
[[I don't know]]
[[Can you repeat the question?|Start]]
</div><div>
<img src="img/negative.jpg" class="center">
<%
var negative = [
"Are you sure you do not want to build a snowman?",
"Are you really sure you do not want to build a snowman?",
"Are you really, really sure you do not want to build a snowman?",
"Are you really, really, really sure you do not want to build a snowman?",
"Are you absolutely sure you do not want to build a snowman?",
"Are you certain you do not want to build a snowman?",
"Are you positive you do not want to build a snowman?"
];
var randomInt = _.random(0, negative.length-1);
print(negative[randomInt]);
%>
[[Yes|Positive Question]]
[[No|Snowman]]
[[Maybe]]
[[I don't know]]
[[Can you repeat the question?|Start]]
</div><div>
<img src="img/maybe.png" class="center full">
[[What do you mean "maybe"? Just answer the question!|Start]]
</div><div>
<img src="img/idontknow.png" class="center">
[[What do you mean "I don't know"? It's a yes or no question!|Start]]
</div><div>
[[Start]]
</div>