{% extends "global/Page.html" %} {% load otree static %} {{ block title }}

{{if subsession.round_number == 1 }} Practice Round {{ else }} Round {{ round_shown }} of {{ total_shown }} {{ endif }}

Results

{{ endblock }} {{ block content }}

This round ends at period {{player.period}} . The cost of waiting is {{ player.cost_waiting }} points.

In that period, your decision is {{player.choice}} . Your opponent's decision is {{other.choice}} .

This round ends with {{player.round_result}}.

Your strength in this round is {{player.ability}} , and your opponent's strength is {{other.ability}} .

{{if player.round_result == 'an escape' }} {{ if player.choice == 'Flee' and other.choice == 'Flee'}}

Both you and your opponent choose to flee, you receive 100 points.

{{ elif player.choice == 'Flee' and other.choice != 'Flee'}}

You choose to flee while your opponent chooses not to flee, you receive 0 points.

{{ elif player.choice != 'Flee' and other.choice == 'Flee'}}

You choose not to flee while your opponent chooses to flee, you receive 200 points.

{{ endif}} {{ elif player.round_result == 'a battle' }} {{ if player.ability > other.ability }}

Your strength is higher than your opponent's strength, you win the battle and receive 100 points.

{{ elif player.ability < other.ability }}

Your strength is lower than your opponent's strength, you lose the battle and receive -100 points.

{{ else }}

You and your opponent have the same strength, the winner is randomly determined by the computer.

{{ endif }} {{ endif }}

Minus the cost of waiting, your payoff in this round is {{player.round_earning}} points.

Please press the "next" button to proceed to the next round.

{{ next_button }} {{ endblock }}