diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-09 00:10:12 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-09 00:10:12 +0200 |
| commit | 02e319e506738ba39ee8edb96d11d6d91105d544 (patch) | |
| tree | 83cfba5d7842286c25b0150855092582577ca8c4 /data/recipes/default.js | |
| parent | 4e069bc9d7f033aba601dc52a2e0b0065b60d513 (diff) | |
| download | hurrycurry-02e319e506738ba39ee8edb96d11d6d91105d544.tar hurrycurry-02e319e506738ba39ee8edb96d11d6d91105d544.tar.bz2 hurrycurry-02e319e506738ba39ee8edb96d11d6d91105d544.tar.zst | |
cook tomato sauce for noodles
Diffstat (limited to 'data/recipes/default.js')
| -rw-r--r-- | data/recipes/default.js | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index dcb36123..e7980627 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -294,22 +294,23 @@ edible("burger", group_hidden(combine(PL, cut(bun), cut(fish))) ) -// Noodles -const noodle = cook(cut(roll(dough)).as("noodles").tr(POT)) -edible("noodles", - combine(PL, noodle, tomato_juice), - combine(PL, noodle, tomato_juice, cut(cheese)), - // combine(PL, noodle, tomato_juice, cut(cheese), sear(patty)), -) - // Soup +const tomato_soup = cook(combine(POT, tomato_juice)).as("tomato-soup") edible("soups", - cook(combine(POT, tomato_juice)).as("tomato-soup").tr(PL), - cook(combine(POT, cut(mushroom))).as("mushroom-soup").tr(PL), + tomato_soup.tr(PL), + cook(combine(POT, process(mushroom.tr(FP)))).as("mushroom-soup").tr(PL), cook(combine(POT, cheese, cut(leek))).as("cheese-leek-soup").tr(PL), // cook(combine(PL, patty, cut(potato), cut(leek))).as("stew").tr(PL) ) +// Noodles +const noodle = cook(cut(roll(dough)).as("noodles").tr(POT)) +edible("noodles", + combine(PL, noodle, tomato_soup), + combine(PL, noodle, tomato_soup, cut(cheese)), + // combine(PL, noodle, tomato_juice, cut(cheese), sear(patty)), +) + // Rice and nigiri edible("nigiri", container_add(cut(fish), cook(rice.tr(POT))).as("nigiri").tr(PL), |