diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-24 21:11:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-24 21:11:56 +0200 |
commit | 92535c24358339638af71272f444ae843bc129c1 (patch) | |
tree | 5304dbf3134ae7476b09aa6df5134d17472232b1 | |
parent | c6aff9bdd25355dd3c9b68ccc13f0cc82c2978a1 (diff) | |
download | hurrycurry-92535c24358339638af71272f444ae843bc129c1.tar hurrycurry-92535c24358339638af71272f444ae843bc129c1.tar.bz2 hurrycurry-92535c24358339638af71272f444ae843bc129c1.tar.zst |
sliced bread slices
-rw-r--r-- | data/demands.yaml | 8 | ||||
-rw-r--r-- | data/recipes.ts | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/data/demands.yaml b/data/demands.yaml index fdc66fda..0a2b9706 100644 --- a/data/demands.yaml +++ b/data/demands.yaml @@ -13,14 +13,14 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # -- { from: bread-plate, to: dirty-plate, duration: 10 } +- { from: bread-slice-plate, to: dirty-plate, duration: 10 } - { from: steak-plate, to: dirty-plate, duration: 10 } - { from: sliced-tomato-plate, to: dirty-plate, duration: 10 } -- { from: bread-steak-plate, to: dirty-plate, duration: 15 } -- { from: bread-sliced-tomato-plate, to: dirty-plate, duration: 15 } +- { from: bread-slice-steak-plate, to: dirty-plate, duration: 15 } +- { from: bread-slice-sliced-tomato-plate, to: dirty-plate, duration: 15 } - { from: sliced-tomato-steak-plate, to: dirty-plate, duration: 15 } -- { from: bread-sliced-tomato-steak-plate, to: dirty-plate, duration: 20 } +- { from: bread-slice-sliced-tomato-steak-plate, to: dirty-plate, duration: 20 } - { from: tomato-soop-plate, to: dirty-plate, duration: 20 } diff --git a/data/recipes.ts b/data/recipes.ts index 90307e88..8ae9bcd4 100644 --- a/data/recipes.ts +++ b/data/recipes.ts @@ -126,7 +126,8 @@ crate("herbs") cut("tomato") cook("raw-steak", "steak") -combine("plate", "steak-pot", "sliced-tomato", "bread") +cut("bread", "bread-slice") +combine("plate", "steak-pot", "sliced-tomato", "bread-slice") process("flour", "dough") out({ action: "instant", inputs: ["dough-foodprocessor"], outputs: ["foodprocessor", "dough"] }) |