Paper Challenge
Shootoff
{% for i in range(target_count) %}
{% if i == target_count-1 %}
{% else %}
{% endif %}
{% endfor %}
{%trans%}Wall length required{%endtrans%}: {{ wall_length|round(1,'ceil') }}cm
{%trans%}Distance from wall{%endtrans%}: {{ distance|round(1,'ceil') }}cm
{%trans%}Stage preparation{%endtrans%}:
- {%trans%}Place the first target with the 'ZERO point' marker on the left or right side of the wall{%endtrans%}
- {%trans%}Set shooting box{%endtrans%} {{ box_position|round(1,'ceil') }}cm {%trans%}from 'ZERO' point (along the wall) and{%endtrans%} {{distance}}cm {%trans%}from the wall{%endtrans%}
- {%trans%}Ensure that the starting field is positioned in a convenient location within the room, so that nothing obstructs the drawing and aiming at targets across the entire width of the wall{%endtrans%}
- {%trans%}If necessary, adjust the first target along with the ZERO point and repeat the two previous steps{%endtrans%}
- {%trans%}Place the remaining targets on the wall according to the distances indicated on the position markers at the bottom of each target. Ensure that all targets are aligned in a single line parallel to the ground{%endtrans%}
{% for i in range(target_count) %}
{% if i == target_count-1 %}
{% else %}
{% endif %}
{% if i==0 %}
{%trans%}ZERO point{%endtrans%} (Shootoff)
{% else %}
{{ i * gap|round(1,'ceil') }}cm {%trans%}from ZERO point{%endtrans%} (Shootoff)
{% endif %}
{% endfor %}