OriginDex

{% for group in grouped_pokemon %}
Box {{ '%03d' | format(loop.index) }}
{% for pokemon in group %} {% if pokemon %}
{{ pokemon.Name }}
{{ pokemon.Name }} {{ pokemon.Form }}
{% if pokemon.Form != 'Default' %} {{ pokemon.Form }} {% else %} ----- {% endif %}
Pokeball
#{{ '%04d'|format(pokemon.ID) }}
{% if pokemon.MarkIcon %}
Origin Mark
{% endif %}
{% else %}
{% endif %} {% endfor %}
{% endfor %}
{% for game in efficiency_plan %}
{{ game.game_name }}
{% for pokemon in game.pokemon %}

{{ pokemon.name }}{% if pokemon.form_name %} ({{ pokemon.form_name }}){% endif %}

Catch Count: {{ pokemon.catch_count }}

{% if pokemon.evolve_to %}

Evolves To:

{% for evolution in pokemon.evolve_to %}
{{ evolution.name }}{% if evolution.form_name %} ({{ evolution.form_name }}){% endif %} - Count: {{ evolution.count }}
{% endfor %}
{% endif %} {% if pokemon.breed_for %}

Breed For:

{% for breeding in pokemon.breed_for %}
{{ breeding.name }}{% if breeding.form_name %} ({{ breeding.form_name }}){% endif %} - Count: {{ breeding.count }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}