{{ block title }}Extract{{ endblock }} {{ block content }}

This game is a simulation of how subsequent generations use a natural resource (cutting down a forest for lumber).

The forest will start out with 100 acres. Each generation, the size of the forest increases by a factor of {{ C.MULTIPLIER }}. But each generation also has the opportunity to extract some amount of the forest for lumber.

{{ if session.intergenerational_history }}

History

{{ for row in session.intergenerational_history }} {{ endfor }}
Generation At period start (value0) After growth (value1) Extracted Final amount (value2)
{{ row.generation }} {{ row.value0 }} {{ row.value1 }} {{ row.extracted }} {{ row.value2 }}
{{ endif }}

Current

During this generation the rainforest has grown from {{ player.value0 }} to {{ player.value1 }} acres.

How much of this do you want to extract for the current generation?

{{ formfields }} {{ next_button }} {{ endblock }}