diff options
| author | Sofviic <sofviic1993@gmail.com> | 2024-06-17 15:10:26 +0300 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:20:08 +0200 |
| commit | 30b65d1d5e7d0f742a430beda2c54c620a76ffce (patch) | |
| tree | c2341d49d19451ae35862dfd1fd436c18a23ed07 /data/recipes.yaml | |
| parent | 69d6b4aeed1474336381e85a240aad4c3e9be989 (diff) | |
| download | hurrycurry-30b65d1d5e7d0f742a430beda2c54c620a76ffce.tar hurrycurry-30b65d1d5e7d0f742a430beda2c54c620a76ffce.tar.bz2 hurrycurry-30b65d1d5e7d0f742a430beda2c54c620a76ffce.tar.zst | |
updated sketch
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 |