🌊 The Deep (NPCs & Hazards)

{% for p in game.players if p.role == 'deep' %}
{{ p.name }} Rank {{ p.rank }}
{% else %}

None selected

{% endfor %}

🐀 Pi-Rats (Crew Players)

{% for p in game.players if p.role == 'pirat' %}
{{ p.name }} Rank {{ p.rank }}{% if is_captain(p, game.players) %} (Captain) {% endif %}
{% else %}

None selected

{% endfor %}