From 16620a0a3b9a279b3ce18d18b588dc9a9f2c9c20 Mon Sep 17 00:00:00 2001 From: Simon Wilkening Date: Sun, 13 Oct 2024 14:18:25 +0200 Subject: [PATCH] Added map 7 and map 8 to compare 3D ship models --- Projekte/battleship/client/maps/map7.json | 66 +++++++++++++++++++++++ Projekte/battleship/client/maps/map8.json | 66 +++++++++++++++++++++++ 2 files changed, 132 insertions(+) create mode 100644 Projekte/battleship/client/maps/map7.json create mode 100644 Projekte/battleship/client/maps/map8.json diff --git a/Projekte/battleship/client/maps/map7.json b/Projekte/battleship/client/maps/map7.json new file mode 100644 index 0000000..eca44a4 --- /dev/null +++ b/Projekte/battleship/client/maps/map7.json @@ -0,0 +1,66 @@ +{ + "width": 10, + "height": 10, + "ships": [ + { + "length": 4, + "x": 0, + "y": 9, + "rot": "RIGHT" + }, + { + "length": 3, + "x": 4, + "y": 9, + "rot": "RIGHT" + }, + { + "length": 3, + "x": 7, + "y": 9, + "rot": "RIGHT" + }, + { + "length": 2, + "x": 0, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 2, + "x": 2, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 2, + "x": 4, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 6, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 7, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 8, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 9, + "y": 8, + "rot": "RIGHT" + } + ] +} \ No newline at end of file diff --git a/Projekte/battleship/client/maps/map8.json b/Projekte/battleship/client/maps/map8.json new file mode 100644 index 0000000..32ec7cd --- /dev/null +++ b/Projekte/battleship/client/maps/map8.json @@ -0,0 +1,66 @@ +{ + "width": 10, + "height": 10, + "ships": [ + { + "length": 4, + "x": 0, + "y": 9, + "rot": "RIGHT" + }, + { + "length": 3, + "x": 0, + "y": 8, + "rot": "RIGHT" + }, + { + "length": 3, + "x": 0, + "y": 7, + "rot": "RIGHT" + }, + { + "length": 2, + "x": 0, + "y": 6, + "rot": "RIGHT" + }, + { + "length": 2, + "x": 0, + "y": 5, + "rot": "RIGHT" + }, + { + "length": 2, + "x": 0, + "y": 4, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 0, + "y": 3, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 0, + "y": 2, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 0, + "y": 1, + "rot": "RIGHT" + }, + { + "length": 1, + "x": 0, + "y": 0, + "rot": "RIGHT" + } + ] +} \ No newline at end of file