Stats
{% for val in board.stats %}
{% if val.0 > 1 %}
- x{{+ val.0 +}} {{+ val.1 +}}
{% else %}
- {{+ val.1 +}}
{% endif %}
{% endfor %}
{% let supports = board.get_supports() %}
{% if supports.len() > 0 %}
Support
{% for ability in supports %}
- {{ ability.name }}
{% endfor %}
{% endif %}
{% let spirits = board.get_spirits() %}
{% if spirits.len() > 0 %}
Spirit
{% for ability in spirits %}
- {{ ability.name }}
{% endfor %}
{% endif %}
{% let commands = board.get_commands() %}
{% if commands.len() > 0 %}
Commands
{% for ability in commands %}
- {{ ability.name }}
{% endfor %}
{% endif %}