planet-wars/backend/templates/info/info_5.html.tera

31 lines
601 B
Text
Raw Normal View History

2020-04-09 22:57:12 +02:00
{% extends "info/base" %}
2020-04-07 11:31:28 +02:00
{% block header %}
Format: Player turn (actions)
{% endblock %}
2020-04-09 22:57:12 +02:00
{% block info %}
2020-04-07 11:31:28 +02:00
<div class="help_content_2">
<pre>
<code>{
“moves”: [
{
“origin”: “my boring planet”,
“destination”: “my cool planet”,
“ship_count”: 23
}
]
}</code>
</pre>
<h3>Invalid commands are ignored by the game implementation.</h3>
<h3>If your bot crashes, you can reconnect but chances of winning are slim.</h3>
<h3>Your bot is allowed one second to compute its turn.</h3>
</div>
{% endblock %}