2020-04-06 20:22:10 +02:00
|
|
|
{% extends "help/base" %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
|
2020-04-07 11:31:28 +02:00
|
|
|
Information
|
2020-04-06 20:22:10 +02:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block help %}
|
|
|
|
|
2020-04-07 11:31:28 +02:00
|
|
|
<div class="help_content_2">
|
|
|
|
<h2>Rules</h2>
|
|
|
|
<ul>
|
|
|
|
<li>turn-based</li>
|
|
|
|
<li>planets on 2d plane</li>
|
|
|
|
<li>players can occupy planets</li>
|
|
|
|
<li>each turn, an occupied planet constructs a new ship for its owner</li>
|
|
|
|
<li>spaceship travel time is proportional to the euclidean distance (floor(sqrt(dx * dx - dy * dy)))</li>
|
|
|
|
<li>combat happens only on planets</li>
|
|
|
|
</ul>
|
|
|
|
<h2>Turn Order</h2>
|
|
|
|
<ul>
|
|
|
|
<li>ship construction</li>
|
|
|
|
<li>dispatches</li>
|
|
|
|
<li>combat resolution</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2020-04-06 20:22:10 +02:00
|
|
|
{% endblock %}
|