diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-04 07:02:46 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-04 07:02:46 +0200 |
commit | 790da3cf1a44a397f340583320841cf459d188a6 (patch) | |
tree | e5ad23927a6854b89d8f6f38f03f2288a77813ab /maps | |
parent | f6da362f94622d1c0d09d1fdbef84997ad8dc7c0 (diff) | |
download | planetwars.dev-790da3cf1a44a397f340583320841cf459d188a6.tar.xz planetwars.dev-790da3cf1a44a397f340583320841cf459d188a6.zip |
rough but functional integration test
Diffstat (limited to 'maps')
-rw-r--r-- | maps/hex.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/maps/hex.json b/maps/hex.json new file mode 100644 index 0000000..5ef4f31 --- /dev/null +++ b/maps/hex.json @@ -0,0 +1,43 @@ +{ + "planets": [ + { + "name": "protos", + "x": -6, + "y": 0, + "owner": 1, + "ship_count": 6 + }, + { + "name": "duteros", + "x": -3, + "y": 5, + "ship_count": 6 + }, + { + "name": "tritos", + "x": 3, + "y": 5, + "ship_count": 6 + }, + { + "name": "tetartos", + "x": 6, + "y": 0, + "owner": 2, + "ship_count": 6 + }, + { + "name": "pemptos", + "x": 3, + "y": -5, + "ship_count": 6 + }, + { + "name": "extos", + "x": -3, + "y": -5, + "ship_count": 6 + } + ] +} + |