diff options
Diffstat (limited to 'data/recipes.yaml')
| -rw-r--r-- | data/recipes.yaml | 54 |
1 files changed, 47 insertions, 7 deletions
diff --git a/data/recipes.yaml b/data/recipes.yaml index 3817fe3d..19a28301 100644 --- a/data/recipes.yaml +++ b/data/recipes.yaml @@ -1,34 +1,74 @@ - +# tomato pipeline - tile: counter inputs: [tomato] outputs: [sliced-tomato] - duration: 3 action: hold + duration: 3 +- tile: counter + inputs: [sliced-tomato,plate] + outputs: [sliced-tomato-meal] + action: instant + duration: 0 +# bread pipeline - tile: counter inputs: [flour] outputs: [dough] - duration: 5 action: hold + duration: 5 - tile: oven inputs: [dough] outputs: [bread] - duration: 20 action: wait + duration: 20 +- tile: counter + inputs: [bread,plate] + outputs: [bread-meal] + action: instant + duration: 0 +# steak pipeline - tile: oven inputs: [raw-steak] outputs: [steak] - duration: 15 action: wait + duration: 15 +- tile: counter + inputs: [steak,plate] + outputs: [steak-meal] + action: instant + duration: 0 + +# combination meals +- tile: counter + inputs: [steak-meal,bread] + outputs: [burger-meal] + action: instant + duration: 0 +- tile: counter + inputs: [steak-meal,tomato] + outputs: [tomatosteak-meal] + action: instant + duration: 0 +- tile: counter + inputs: [burger-meal,tomato] + outputs: [tomatoburger-meal] + action: instant + duration: 0 +- tile: counter + inputs: [tomatosteak-meal,bread] + outputs: [tomatoburger-meal] + action: instant + duration: 0 +# cleaning - tile: sink inputs: [dirty-glass] outputs: [glass] - duration: 5 action: hold + duration: 5 - tile: sink inputs: [dirty-plate] outputs: [plate] - duration: 5 action: hold + duration: 5 |