diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/demands.yaml | 2 | ||||
-rw-r--r-- | data/recipes.ts | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/data/demands.yaml b/data/demands.yaml index 0a2b9706..f6be0911 100644 --- a/data/demands.yaml +++ b/data/demands.yaml @@ -23,4 +23,4 @@ - { from: bread-slice-sliced-tomato-steak-plate, to: dirty-plate, duration: 20 } -- { from: tomato-soop-plate, to: dirty-plate, duration: 20 } +- { from: tomato-soup-plate, to: dirty-plate, duration: 20 } diff --git a/data/recipes.ts b/data/recipes.ts index 8ae9bcd4..30a60b63 100644 --- a/data/recipes.ts +++ b/data/recipes.ts @@ -122,20 +122,22 @@ out({ action: "active", duration: 2, tile: "sink", inputs: ["dirty-plate"], outp crate("tomato") crate("raw-steak") crate("flour") -crate("herbs") +crate("leek") cut("tomato") + cook("raw-steak", "steak") -cut("bread", "bread-slice") -combine("plate", "steak-pot", "sliced-tomato", "bread-slice") process("flour", "dough") out({ action: "instant", inputs: ["dough-foodprocessor"], outputs: ["foodprocessor", "dough"] }) bake("dough", "bread") +cut("bread", "bread-slice") process("tomato") -combine("pot", "herbs", "tomato-juice-foodprocessor") -cook("herbs-tomato-juice-pot", "tomato-soop") -out({ action: "instant", inputs: ["tomato-soop-pot", "plate"], outputs: ["pot", "tomato-soop-plate"] }) +combine("pot", "leek", "tomato-juice-foodprocessor") +cook("leek-tomato-juice-pot", "tomato-soup") +out({ action: "instant", inputs: ["tomato-soup-pot", "plate"], outputs: ["pot", "tomato-soup-plate"] }) + +combine("plate", "steak-pot", "sliced-tomato", "bread-slice") auto_trash() |