diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-21 16:54:28 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-21 16:56:20 +0200 |
commit | e51dab4be6732bd77777dfe42bbaddfc5fa21d20 (patch) | |
tree | 6bada3162f90b4faa689221baf76be222d1cba4f | |
parent | e887033d29647603534a1732dc3b3bf5d85ddaf8 (diff) | |
download | hurrycurry-e51dab4be6732bd77777dfe42bbaddfc5fa21d20.tar hurrycurry-e51dab4be6732bd77777dfe42bbaddfc5fa21d20.tar.bz2 hurrycurry-e51dab4be6732bd77777dfe42bbaddfc5fa21d20.tar.zst |
more foods
-rw-r--r-- | data/recipes/default.ts | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/data/recipes/default.ts b/data/recipes/default.ts index 72299518..4e7b3e96 100644 --- a/data/recipes/default.ts +++ b/data/recipes/default.ts @@ -189,9 +189,13 @@ edible(bread) // Burger const steak_pot = cook(raw_steak.tr(POT)).as("steak") const sliced_tomato = cut(tomato).as("sliced-tomato") -const burger = combine(PL, steak_pot, sliced_tomato, bread_slice) -const tomato_toast = combine(PL, sliced_tomato, bread_slice) -edible(burger, tomato_toast) +edible( + combine(PL, steak_pot, sliced_tomato, bread_slice), + combine(PL, sliced_tomato, bread_slice), + combine(PL, steak_pot, bread_slice), + combine(PL, sliced_tomato, steak_pot), + combine(PL, sliced_tomato), +) // Soup const tomato_juice = process(tomato.tr(FP)).as("tomato-juice") |