This game has two groups: Group 1 and Group 2 . Group 1 consists of one player, Player 1. Group 2 consists of ten players.
In this game:
-
Each player in Group 2 is given {{ Constants.endowment }}.
-
Each player in Group 2 decides how much to share with Player 1.
-
Player 1 sees the total amount shared by Group 2 and decides whether or not to accept this offer.
-
If Player 1 accepts this offer, then Player 1 receives the total amount of money shared and
each player in Group 2 receives {{ Constants.endowment }} minus the amount shared.
-
If Player 1 rejects this offer, then every player gets {{ Constants.payoff_if_rejected }} in this round.
{% if player.role == 'g1' %}
You are in Group 1 .
Each player in Group 2 will decide how much of the {{ Constants.endowment }} they would like to offer you.
You will receive the average amount offered by the group
{% else %}
You are in Group 2 . You are given {{ Constants.endowment }}.
{% endif %}