{% extends "info/base" %} {% block header %} Format: Game state {% endblock %} {% block info %}
        {
    "planets": [
        {
            “name”: “my cool planet”,
            “x”: 42,
            “y”: 42,
            “owner”: 1,
            “ship_count”: 23
        }
    ],
    "expeditions": [
        {
            “id”: 1000,
            “origin”: “my boring planet”,
            “destination”: “my cool planet”,
            “turns_remaining”: 3,
            “owner”: 2,
            “ship_count”: 18
        }
    ]
}
    

Player numbers are rotated so that you are always player 1.

Note that player numbers are 1-based.

Neutral planets exist, they don’t have an owner (not in JSON, null, …)

{% endblock %}