diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-09-20 21:11:19 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-09-20 21:11:19 +0200 |
commit | 9643ccf6d69cc34f56fff454f1c0aa3e34a93d08 (patch) | |
tree | ffc947ac1bcea84cfb6ec4048ac8316c7fc6907b /planetwars-matchrunner/maps/abc.json | |
parent | 9e05a9bdd5f7e5ddc8a2170c031a47d669432832 (diff) | |
download | planetwars.dev-9643ccf6d69cc34f56fff454f1c0aa3e34a93d08.tar.xz planetwars.dev-9643ccf6d69cc34f56fff454f1c0aa3e34a93d08.zip |
add a basic matchrunner test
Diffstat (limited to 'planetwars-matchrunner/maps/abc.json')
-rw-r--r-- | planetwars-matchrunner/maps/abc.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/planetwars-matchrunner/maps/abc.json b/planetwars-matchrunner/maps/abc.json new file mode 100644 index 0000000..70462e7 --- /dev/null +++ b/planetwars-matchrunner/maps/abc.json @@ -0,0 +1,25 @@ +{ + "planets": [ + { + "name": "a", + "x": -3, + "y": 0, + "owner": 1, + "ship_count": 5 + }, + { + "name": "b", + "x": 0, + "y": 0, + "ship_count": 5 + }, + { + "name": "c", + "x": 3, + "y": 0, + "owner": 2, + "ship_count": 5 + } + ] +} + |