diff options
-rw-r--r-- | data/maps/depot.yaml | 6 | ||||
-rw-r--r-- | data/maps/zigzag.yaml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/data/maps/depot.yaml b/data/maps/depot.yaml index 5291180d..499966f6 100644 --- a/data/maps/depot.yaml +++ b/data/maps/depot.yaml @@ -56,6 +56,12 @@ tiles: "█": wall "▒": wall-window +tile_entities: + ">": !conveyor { dir: [1, 0] } + "<": !conveyor { dir: [-1, 0] } + "v": !conveyor { dir: [0, 1] } + "^": !conveyor { dir: [0, -1] } + items: "S": pot "w": plate diff --git a/data/maps/zigzag.yaml b/data/maps/zigzag.yaml index 2a1d749e..56d974b3 100644 --- a/data/maps/zigzag.yaml +++ b/data/maps/zigzag.yaml @@ -50,6 +50,12 @@ tiles: "█": wall "▒": wall-window +tile_entities: + ">": !conveyor { dir: [1, 0] } + "<": !conveyor { dir: [-1, 0] } + "v": !conveyor { dir: [0, 1] } + "^": !conveyor { dir: [0, -1] } + items: "S": pot "w": plate |