1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
- { tile: floor, action: !never }
- { tile: counter, inputs: [steak-meal, void] }
- { tile: counter, inputs: [sliced-tomato-meal, void] }
- { tile: counter, inputs: [bread-meal, void] }
- { tile: counter, inputs: [burger-meal, void] }
- { tile: counter, inputs: [tomatosteak-meal, void] }
- { tile: counter, inputs: [tomatoburger-meal, void] }
- { tile: trash, action: !instant , inputs: [raw-steak] }
- { tile: trash, action: !instant , inputs: [steak] }
- { tile: trash, action: !instant , inputs: [flour] }
- { tile: trash, action: !instant , inputs: [dough] }
- { tile: trash, action: !instant , inputs: [steak-meal] }
- { tile: table, inputs: [raw-steak, void] }
- tile: tomato-spawn # Tomato pipeline
outputs: [tomato]
action: !instant
- tile: table
inputs: [tomato]
outputs: [sliced-tomato]
action: !active 3
- tile: table
inputs: [sliced-tomato, plate]
outputs: [sliced-tomato-meal]
action: !instant
- tile: flour-spawn # Bread pipeline
outputs: [flour]
action: !instant
- tile: table
inputs: [flour]
outputs: [dough]
action: !active 5
- tile: oven
inputs: [dough]
outputs: [bread]
action: !passive 20
- tile: table
inputs: [bread, plate]
outputs: [bread-meal]
action: !instant
- tile: raw-steak-spawn # Steak pipeline
action: !instant
outputs: [raw-steak]
- tile: pan
inputs: [raw-steak]
outputs: [steak]
action: !passive 15
- tile: table
inputs: [steak, plate]
outputs: [steak-meal]
action: !instant
- tile: table # Combination meals
inputs: [steak-meal, bread]
outputs: [burger-meal]
action: !instant
- tile: table
inputs: [steak-meal, tomato]
outputs: [tomatosteak-meal]
action: !instant
- tile: table
inputs: [burger-meal, tomato]
outputs: [tomatoburger-meal]
action: !instant
- tile: table
inputs: [tomatosteak-meal, bread]
outputs: [tomatoburger-meal]
action: !instant # cups
- tile: watercooler
inputs: [glass]
outputs: [water]
action: !passive 2
- tile: sink
inputs: [water]
outputs: [glass]
action: !instant
- tile: dirty-plate-spawn # Cleaning
outputs: [dirty-plate]
action: !instant
- tile: sink
inputs: [dirty-glass]
outputs: [glass]
action: !active 5
- tile: sink
inputs: [dirty-plate]
outputs: [plate]
action: !active 5
|