{% extends "core/base.html" %} {% load static %} {% block title_text %}Game Kit{% endblock title_text %} {% block header_text %}GameKit{% endblock header_text %} {% block content %}

Trinkets

{% if pass_token %}
{{ pass_token.tooltip_name }}
{% endif %} {% if carte %}
{{ carte.tooltip_name }}
{% endif %} {% if coin %}
{{ coin.tooltip_name }}
{% endif %} {% if not pass_token and not carte and not coin %}

No trinkets yet.

{% endif %}

Tokens

{% for token in free_tokens %}
{{ token.tooltip_name }}
{% endfor %} {% for token in tithe_tokens %}
{{ token.tooltip_name }}
{% endfor %} {% if not free_tokens and not tithe_tokens %}

No tokens yet.

{% endif %}

Card Decks

{% for deck in unlocked_decks %}
{{ deck.name }} {{ deck.card_count }} cards
{% empty %}

No decks unlocked.

{% endfor %}

Dice Sets

Coming soon
{% endblock content %} {% block scripts %} {% endblock scripts %}