diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/index.yaml | 1 | ||||
| -rw-r--r-- | data/maps/bus.yaml | 84 | ||||
| -rw-r--r-- | data/maps/test.yaml | 6 | 
3 files changed, 88 insertions, 3 deletions
| diff --git a/data/index.yaml b/data/index.yaml index 05e2de9d..f7abdb3b 100644 --- a/data/index.yaml +++ b/data/index.yaml @@ -14,6 +14,7 @@ maps:      - depot      - line      - teeny +    - bus  recipes:      - none diff --git a/data/maps/bus.yaml b/data/maps/bus.yaml new file mode 100644 index 00000000..cfac1380 --- /dev/null +++ b/data/maps/bus.yaml @@ -0,0 +1,84 @@ +map: +    - "''''''''''''''''''''" +    - "'███████c__c███████'" +    - "'█#SSSS█t__t█RTFL.█'" +    - "'█#....█c__c█.....█'" +    - "'d.....█'__'█.....d'" +    - "'█...>>>>»»>>>v...█'" +    - "'█oo.A██▒dd▒██v...█'" +    - "'████A█.c..c.█v████'" +    - "'''''A▒ct..tc▒v'''''" +    - "'''''A<......v<'''''" +    - "'''''>A......>v'''''" +    - "'''''A▒ct..tc▒v'''''" +    - "'████A█.c..c.█v████'" +    - "'█#..A██▒dd▒██v.pp█'" +    - "'█#..A<<<««<<<<..p█'" +    - "'d.....█'__'█.....d'" +    - "'█.....█'__'█....p█'" +    - "'█ff#CC█'__'█Xsspp█'" +    - "'███████'__'███████'" +    - "'''''''''__'''''''''" +    - "'''''''''__'''''''''" +    - "'''''''''!~'''''''''" + +tiles: +    "#": counter +    "f": counter +    "p": counter +    ">": conveyor +    "<": conveyor +    "A": conveyor +    "v": conveyor +    "t": table +    "w": counter-window +    "s": sink +    "o": oven +    "S": stove +    "C": cuttingboard +    "R": raw-steak-crate +    "T": tomato-crate +    "F": flour-crate +    "L": leek-crate +    "X": trash + +    "c": chair +    ".": floor +    "'": grass +    "*": tree +    "~": path +    "!": path +    "_": path +    "«": path +    "»": path +    "d": door +    "█": wall +    "▒": wall-window + +tile_entities: +    ">": !conveyor { dir: [1, 0] } +    "<": !conveyor { dir: [-1, 0] } +    "»": !conveyor { dir: [1, 0] } +    "«": !conveyor { dir: [-1, 0] } +    "v": !conveyor { dir: [0, 1] } +    "A": !conveyor { dir: [0, -1] } + +items: +    "S": pot +    "w": plate +    "p": plate +    "f": foodprocessor + +chef_spawn: "~" +customer_spawn: "!" + +walkable: +    - door +    - floor +    - chair +    - grass +    - path + +collider: +    - wall +    - tree diff --git a/data/maps/test.yaml b/data/maps/test.yaml index 09f0b8a7..bb6137e5 100644 --- a/data/maps/test.yaml +++ b/data/maps/test.yaml @@ -34,9 +34,9 @@ map:  tiles:      "⌷": counter      "f": counter -    "<": counter -    "#": counter -    ">": counter +    "<": conveyor +    "#": conveyor +    ">": conveyor      "t": table      "w": counter-window      "s": sink | 
