{% extends "layouts/base.html" %} {% block title %}Commands{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "components/search.html" %}
{% include "components/type-filters.html" %}
{% include "components/char-filters.html" %} {% for crystal in crystals %} {% endfor %} {% for cmd in commands %} {% for recipe in cmd.recipes %} {% for crystal in crystals %} {% let ability = recipe.get_ability(crystal) %} {% endfor %} {% endfor %} {% endfor %}
Character Command Ingredient A Ingredient B Type Chance Abilities
{{ crystal }}
{% if recipe.can_unlock(Character::Terra) %}T{% endif %} {% if recipe.can_unlock(Character::Ventus) %}V{% endif %} {% if recipe.can_unlock(Character::Aqua) %}A{% endif %}
{{ cmd.name }} {{ recipe.ingredients.0 }} {{ recipe.ingredients.1 }} {{ recipe.type }} {{ recipe.chance }}% {% if ability.is_some() %} {{ ability.unwrap().name }} {% else %} - {% endif %}
{% endblock %}