{{ extends 'global/Page.html' }} {{ block title }}Fishing Vacation{{ endblock }} {{ block content }}
{{ if player.choice == 'Bagel' and player.catch_lake1 != 0 }} {{ if player.catch_lake1 > player.catch_lake2 }} Congrats, lake Bagel yielded more fish this round.
You caught {{ player.catch_lake1 }} fish from lake Bagel. Taylor, the fisherman at lake Pacman caught {{ player.catch_lake2 }} fish. {{ elif player.catch_lake1 < player.catch_lake2 }} Oh no, lake Bagel yielded less fish this round.
You caught {{ player.catch_lake1 }} fish from lake Bagel. Taylor, the fisherman at lake Pacman caught {{ player.catch_lake2 }} fish. {{ else }} Both lakes yielded the same number of fish this round.
You caught {{ player.catch_lake1 }} fish from lake Bagel. Taylor, the fisherman at lake Pacman caught {{ player.catch_lake2 }} fish. {{ endif }}


{{ for fish in it_Bagel }} {{ if forloop.counter < 6 }} {{ elif forloop.counter == 6 }}
{{ elif forloop.counter < 6 }} {{ elif forloop.counter > 6 and forloop.counter < 11 }} {{ elif forloop.counter == 11 }}
{{ elif forloop.counter > 11 }} {{ endif }} {{ endfor }} {{ elif player.choice == 'Bagel' and player.catch_lake1 == 0 }} Oh no, lake Bagel yielded no fish this round.
Taylor, the fisherman at lake Pacman caught {{ player.catch_lake2 }} fish.


{{ elif player.choice == 'Pacman' and player.catch_lake2 != 0 }} {{ if player.catch_lake1 < player.catch_lake2 }} Congrats, lake Pacman yielded more fish this round.
You caught {{ player.catch_lake2 }} fish from lake Pacman. Taylor, the fisherman at lake Bagel caught {{ player.catch_lake1 }} fish. {{ elif player.catch_lake1 > player.catch_lake2 }} Oh no, lake Pacman yielded less fish this round.
You caught {{ player.catch_lake2 }} fish from lake Pacman. Taylor, the fisherman at lake Bagel caught {{ player.catch_lake1 }} fish. {{ else }} Both lakes yielded the same number of fish this round.
You caught {{ player.catch_lake2 }} fish from lake Pacman. Taylor, the fisherman at lake Bagel caught {{ player.catch_lake1 }} fish. {{ endif }}


{{ for fish in it_Pacman }} {{ if forloop.counter < 6 }} {{ elif forloop.counter == 6 }}
{{ elif forloop.counter < 6 }} {{ elif forloop.counter > 6 and forloop.counter < 11 }} {{ elif forloop.counter == 11 }}
{{ elif forloop.counter > 11 }} {{ endif }} {{ endfor }} {{ elif player.choice == 'Pacman' and player.catch_lake2 == 0 }} Oh no, lake Pacman yielded no fish this round.
Taylor, the fisherman at lake Bagel caught {{ player.catch_lake1 }} fish.


{{ endif }}


{{ next_button }} {{ endblock }}