From 137553cacf2c2c04fd991d23254f9ccc782c7a4c Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 9 Sep 2016 21:05:22 +0200 Subject: [PATCH] Second test station --- data/stations/station-beta.json | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 data/stations/station-beta.json diff --git a/data/stations/station-beta.json b/data/stations/station-beta.json new file mode 100644 index 0000000..2736397 --- /dev/null +++ b/data/stations/station-beta.json @@ -0,0 +1,38 @@ +{ + "config": { + "name": "Station Alpha", + "power": 100, + "seeds": 10 + }, + "obstacles": [ + { + "type": "wall", + "vertices": [ + [400, 400], [450, 400], [450, 450], [400, 450] + ] + }, + { + "type": "wall", + "vertices": [ + [800, 400], [850, 400], [850, 450], [800, 450] + ] + }, + { + "type": "wall", + "vertices": [ + [200, 350], [250, 350], [250, 400], [200, 400] + ] + } + ], + "lights": [ + { + "type": "spotlight", + "colour": "red", + "position": [700, 500], + "direction": 90.0, + "spread": 45.0, + "radius_limits": [20, 400], + "intensity": 0.8 + } + ] +} -- 2.34.1