{% if game.phase == "character_creation" %}

IV. Create 3 Secret Techniques

Create 3 techniques that you will swap with other players. Make them cool or ridiculous!

{% set created_techs = json_loads(player.created_techniques) %} {% if created_techs|length == 3 and created_techs[0] %}
#1: {{ created_techs[0] }}
#2: {{ created_techs[1] }}
#3: {{ created_techs[2] }}

Techniques submitted! Waiting for other players to submit so we can shuffle and swap them.

{% else %}
{% endif %} {% elif game.phase == "swap_techniques" %}

IV. Assign Swapped Secret Techniques

You received these techniques from your crew. Assign one to Jack, Queen, and King cards.

{% set swapped_techs = json_loads(player.swapped_techniques) %} {% if player.is_ready %}
J {{ player.tech_jack }}
Q {{ player.tech_queen }}
K {{ player.tech_king }}

Ready! Waiting for other players to finish J/Q/K assignment...

{% else %}

Available Swapped Techniques

Drag a technique onto a card slot below, or click/tap a technique and then click/tap a slot to assign it.

{% for t in swapped_techs %}
⋮⋮ {{ t }}
{% endfor %}
J
J
Jack
Drag or Click to Assign
Q
Q
Queen
Drag or Click to Assign
K
K
King
Drag or Click to Assign
{% endif %} {% endif %}