This is a range option.
Accepted values:
Normal range: {{ option.range_start }} - {{ option.range_end }}
{% if option.special_range_names %}
The following values have special meanings, and may fall outside the normal range.
{% for name, value in option.special_range_names.items() %}
- {{ value }}: {{ name|replace("_", " ")|title }}
{% endfor %}
{% endif %}
{% endmacro %}
{% macro TextChoice(option_name, option) %}
{% for group_name in world.location_name_groups.keys()|sort %}
{% if group_name != "Everywhere" %}
{% endif %}
{% endfor %}
{% if world.location_name_groups.keys()|length > 1 %}
{% endif %}
{% for location_name in (option.valid_keys|sort if (option.valid_keys|length > 0) else world.location_names|sort) %}
{% endfor %}
{% endmacro %}
{% macro ItemSet(option_name, option, world) %}
{% for group_name in world.item_name_groups.keys()|sort %}
{% if group_name != "Everything" %}
{% endif %}
{% endfor %}
{% if world.item_name_groups.keys()|length > 1 %}
{% endif %}
{% for item_name in (option.valid_keys|sort if (option.valid_keys|length > 0) else world.item_names|sort) %}
{% endfor %}
{% endmacro %}
{% macro OptionSet(option_name, option) %}