{% extends "layouts/base.html" %} {% load i18n l10n %} {% load static %} {% block extrastyle %} {% endblock %} {% block content %}

⚔️ {% trans "Minha Arma" %}: +{{ weapon.level }}

{% trans "Fragmentos" %}: {{ weapon.fragments }}

{% trans "Fichas restantes" %}: {{ request.user.fichas }}

{% trans "Monstros disponíveis" %}

{% for mon in monsters %}
{% if mon.image %} {{ mon.name }} {% else %} Imagem padrão de {{ mon.name }} {% endif %}
🐉 Lv {{ mon.level }} - {{ mon.name }}

{% trans "Requer arma" %} +{{ mon.required_weapon_level }}

{% trans "Recompensa" %}: {{ mon.fragment_reward }} {% trans "fragmentos" %}

{% if mon.strength or mon.defense or mon.speed %}
{% if mon.strength %}💪 {% trans "Força" %}: {{ mon.strength }}  {% endif %} {% if mon.defense %}🛡️ {% trans "Defesa" %}: {{ mon.defense }}  {% endif %} {% if mon.speed %}⚡ {% trans "Velocidade" %}: {{ mon.speed }}{% endif %}
{% endif %} {% if not mon.is_alive and mon.respawn_timestamp %}

{% trans "Respawn em" %}

{% endif %}
{% csrf_token %}
{% endfor %}

✨ {% trans "Encantar Arma" %}

{% trans "Gasta 10 fragmentos para tentar aumentar o nível da arma." %}

{% csrf_token %}
{% endblock %}