diff options
author | metamuffin <metamuffin@disroot.org> | 2024-12-22 18:22:26 +0100 |
---|---|---|
committer | metamuffin <metamuffin@noreply.codeberg.org> | 2025-09-17 22:43:33 +0200 |
commit | 01f3ac70858e451d740bc7fde8fee8b7c9e381c2 (patch) | |
tree | 41e3700ae5656c75ddcfac2e984586502146f03e /data/recipes | |
parent | 1b6158233954ec18a2d6f7a65727a2079c2361b6 (diff) | |
download | hurrycurry-01f3ac70858e451d740bc7fde8fee8b7c9e381c2.tar hurrycurry-01f3ac70858e451d740bc7fde8fee8b7c9e381c2.tar.bz2 hurrycurry-01f3ac70858e451d740bc7fde8fee8b7c9e381c2.tar.zst |
cooked potato and seared mushrooms as beilage for steak
Diffstat (limited to 'data/recipes')
-rw-r--r-- | data/recipes/default.js | 40 |
1 files changed, 25 insertions, 15 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index edd99f2d..903510c7 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -230,26 +230,37 @@ const strawberry = crate("strawberry") const cheese = crate("cheese") const lettuce = crate("lettuce") const mushroom = crate("mushroom") +const potato = crate("potato") +// Common renamed const tomato_juice = process(tomato.tr(FP)).as("tomato-juice") - -// Buns +const patty = cut(steak).as("patty") const dough = process(flour.tr(FP)).as("dough").tr() -const bun = bake(dough).as("bun") -edible(bun.tr(PL)) // Pizza const pizza_dough = roll(dough) edible_hot( bake(merge(pizza_dough, tomato_juice, cut(cheese), cut(mushroom))).tr(PL), + bake(merge(pizza_dough, patty, cut(cheese))).tr(PL), bake(merge(pizza_dough, tomato_juice, cut(cheese))).tr(PL), + bake(merge(pizza_dough, patty, leek)).tr(PL), ) +// Bowl +edible_hot(combine(PL, cook(rice.tr(POT)), cut(mushroom), cut(tomato)).as("rice-bowl")) + // Steak -const seared_steak = sear(steak) +const french_fries = sear(cut(potato)).as("french-fries"); +const bun = bake(dough).as("bun") edible_hot( - combine(PL, seared_steak, bun), - combine(PL, seared_steak), + bun.tr(PL), + french_fries.tr(PL), + combine(PL, sear(steak), bun), + combine(PL, sear(steak), french_fries), + combine(PL, sear(steak), cook(potato.tr(POT))), + combine(PL, sear(steak), sear(cut(mushroom))), + combine(PL, sear(steak), sear(cut(mushroom)), french_fries), + combine(PL, sear(steak), sear(cut(mushroom)), cook(potato.tr(POT))), ) // Salad @@ -259,12 +270,11 @@ edible_hot( ) // Burger -const b_patty = sear(cut(steak).as("patty")) edible_hot( - combine(PL, cut(bun), b_patty, cut(cheese)), - combine(PL, cut(bun), b_patty, cut(cheese), cut(lettuce)), - combine(PL, cut(bun), b_patty, cut(tomato), cut(lettuce)), - combine(PL, cut(bun), b_patty, cut(cheese), cut(tomato)), + combine(PL, cut(bun), sear(patty), cut(cheese)), + combine(PL, cut(bun), sear(patty), cut(cheese), cut(lettuce)), + combine(PL, cut(bun), sear(patty), cut(tomato), cut(lettuce)), + combine(PL, cut(bun), sear(patty), cut(cheese), cut(tomato)), combine(PL, cut(bun), cut(cheese), cut(lettuce), cut(tomato)), combine(PL, cut(bun), cut(lettuce), cut(tomato)), ) @@ -273,7 +283,7 @@ edible_hot( const noodle = cook(cut(roll(dough)).as("noodles").tr(POT)) edible_hot( combine(PL, noodle, tomato_juice, cut(cheese)), - combine(PL, noodle, tomato_juice, cut(cheese), b_patty), + combine(PL, noodle, tomato_juice, cut(cheese), sear(patty)), ) // Soup @@ -281,11 +291,11 @@ edible_hot( cook(combine(POT, tomato_juice)).as("tomato-soup").tr(PL), cook(combine(POT, cut(mushroom))).as("mushroom-soup").tr(PL), cook(combine(POT, cheese, leek)).as("cheese-leek-soup").tr(PL), + cook(combine(PL, patty, cut(potato), leek)).tr(PL) ) // Rice and nigiri -const nigiri = container_add(cut(fish), cook(rice.tr(POT))).as("nigiri").tr(PL) -edible(nigiri) +edible(container_add(cut(fish), cook(rice.tr(POT))).as("nigiri").tr(PL)) // coconut milk and strawberry puree const strawberry_puree = process(strawberry.tr(FP)).as("strawberry-puree") |