{% extends "layouts/base.html" %}
{% block title %}Abilities{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
{% for board in boards %}
Spirit: {{+ board.spirit +}}
Total LP Needed: {{+ board.total_lp +}}
Max Level Needed: {{+ board.max_level +}}
Stats:
{% for x in 1..board.get_size().0 + 1 %} | {{ board.get_char(x) }} | {% endfor %}|
{{ y }} | {% for x in 1..board.get_size().0 + 1 %} {% let ability = board.get_ability_at(x, y) %} {% match ability %} {% when Some with (val) %}
{{ val.name }}
{% match val.type %}
{% when AbilityType::Checkpoint %}
{{ val.price }} {% when _ %} {% endmatch %} |
{% when None %}
{% endmatch %} {% endfor %} |