{% load otree %}

Instructions

In this study, you will be randomly and anonymously paired with another participant. Each of you simultaneously and privately chooses whether you want to stag or hunt. Your payoffs will be determined by the choices of both as below:

In each cell, the amount to the left is the payoff for hunter 1 and to the right for the hunter 2.

{% if player.role == "Hunter_1" %}
The Other Participant(Hunter 2)
stag hare
You (Hunter 1) stag {{Constants.stag_match_payoff}}, {{Constants.stag_match_payoff}} {{ Constants.stag_mismatch_payoff }}, {{group.h_2_hare_payoff}}
hare {{Constants.h_1_hare_payoff}}, {{ Constants.stag_mismatch_payoff }} {{Constants.h_1_hare_payoff}}, {{group.h_2_hare_payoff}}
{% else %}
The Other Participant
stag hare
You (Hunter 2) stag {{Constants.stag_match_payoff}}, {{Constants.stag_match_payoff}} {{ Constants.stag_mismatch_payoff }}, {{Constants.h_1_hare_payoff}}
hare {{group.h_2_hare_payoff}}, {{ Constants.stag_mismatch_payoff }} {{group.h_2_hare_payoff}}, {{Constants.h_1_hare_payoff}}
{% endif %}