{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Fishing Game" %}{% endblock %} {% block extrastyle %} {% endblock %} {% block content %}

🎣 {% trans "Fishing Game" %}

🎣 {% trans "Sua Vara" %} - Level {{ rod.level }}

💰 {% trans "Fichas" %}: {{ user_fichas }}

⭐ XP: {{ rod.experience }} / {{ xp_for_next_level }}
{{ xp_percentage }}%
🎣
{% trans "Clique para pescar!" %}
{% if active_baits %}
✨ {% trans "Iscas Ativas" %}
{% for user_bait in active_baits %}
{{ user_bait.bait.name }} - {% trans "Expira em" %}: {{ user_bait.expires_at|date:"d/m/Y H:i" }}
{% endfor %}
{% endif %}
{{ stats.total_catches|default:0 }}
{% trans "Total de Pescarias" %}
{{ stats.successful_catches|default:0 }}
{% trans "Peixes Capturados" %}
{{ stats.rare_fish|default:0 }}
{% trans "Peixes Raros" %}
{{ stats.epic_fish|default:0 }}
{% trans "Peixes Épicos" %}
{{ stats.legendary_fish|default:0 }}
{% trans "Peixes Lendários" %}

🏪 {% trans "Loja de Iscas" %}

{% if available_baits %} {% for bait in available_baits %}
{{ bait.name }}
{{ bait.description }}
+{{ bait.boost_percentage }}% para {{ bait.get_rarity_boost_display }}
⏱️ {{ bait.duration_minutes }} min
{% endfor %} {% else %}

{% trans "Nenhuma isca disponível." %}

{% endif %}

🐟 {% trans "Todos os Peixes" %}

{% if available_fish %}
✅ {% trans "Disponíveis para Pescar" %} ({% trans "Seu nível" %}: {{ rod.level }})
{% for fish in available_fish %}
{% if fish.image %} {{ fish.name }} {% else %} {{ fish.icon }} {% endif %}
{{ fish.name }}
{{ fish.get_rarity_display }}
Level {{ fish.min_rod_level }}+
{% endfor %}
{% endif %} {% if locked_fish %}

🔒 {% trans "Bloqueados" %} ({% trans "Aumente o nível da sua vara" %})
{% for fish in locked_fish %}
{% if fish.image %} {{ fish.name }} {% else %} {{ fish.icon }} {% endif %}
{{ fish.name }}
{{ fish.get_rarity_display }}
🔒 Level {{ fish.min_rod_level }}+
{% endfor %}
{% endif %}

📋 {% trans "Histórico de Pescarias" %}

{% if fishing_history %} {% for history in fishing_history %}
{% if history.fish.image %} {{ history.fish.name }} {% else %} {{ history.fish.icon }} {% endif %} {{ history.fish.name }} {{ history.fish.get_rarity_display }} - {{ history.created_at|date:"d/m/Y H:i" }} {% if history.success %}✅ {% trans "Sucesso" %}{% else %}❌ {% trans "Escapou" %}{% endif %}
{% endfor %} {% else %}

{% trans "Você ainda não pescou nada." %}

{% endif %}
{% endblock %}