{% extends "base.html" %} {% block content %}

Attack {{ target.username }}

Wallet cash exposed: ${{ target.wallet_money }}

Life: {{ target.life }}/{{ target.max_life }}

Status: {{ target.status }}

Stats: {{ target.effective_strength }}/{{ target.effective_speed }}/{{ target.effective_defense }}/{{ target.effective_dexterity }}

Choose Outcome

If you win: leave for xp, hospitalize to lock them down, or mug to steal wallet cash only.

{% for action_type, label in [("leave", "Leave"), ("hospitalize", "Hospitalize"), ("mug", "Mug")] %}
{% endfor %}

Recent Combat Around You

{% if combat_logs %} {% else %}

No relevant combat yet.

{% endif %}
{% endblock %}