{% extends "global/Page.html" %} {% load otree static %} {% block title %} Practice Game 2 - Page 1 of 3 {% endblock %} {% block content %}
In this new practice game, you will see how payoffs change when both you and your opponent decide to PASS at each turn.
In previous practice game, BLUE player ended the game by selecting TAKE at turn 3. The Large Pile was {{ large_pile_practice_second }} and the Small Pile was {{ small_pile_practice_second }}.
Suppose that in previous game, at turn 3, BLUE player selected instead PASS. Now, RED player would be faced with the following situation:
The Large Pile is now: {{ large_pile_practice_third }}
The Small Pile is now: {{ small_pile_practice_third }}
Do you want to take the Large Pile?
{% if player.id_in_group == 1 %}As you can see, the two piles doubled again.
If the RED player selected TAKE, he/she would earn {{ large_pile_practice_third }}, and the BLUE player would earn {{ small_pile_practice_third }}
Will all RED players select PASS and then NEXT. BLUE players, please select NEXT.
{% endblock %} {% block scripts %} {% if player.id_in_group == 1 %} {% endif %} {% endblock %}