aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-12-22 14:39:32 +0100
committermetamuffin <metamuffin@noreply.codeberg.org>2025-09-17 22:43:33 +0200
commit1b6158233954ec18a2d6f7a65727a2079c2361b6 (patch)
tree09cffa393cd38cadf507a550c8fbb190fdba7885 /data
parent6fed80e6837eb784f2af965b79811140c426d7e2 (diff)
downloadhurrycurry-1b6158233954ec18a2d6f7a65727a2079c2361b6.tar
hurrycurry-1b6158233954ec18a2d6f7a65727a2079c2361b6.tar.bz2
hurrycurry-1b6158233954ec18a2d6f7a65727a2079c2361b6.tar.zst
cheese leek soup and mushroom soup
Diffstat (limited to 'data')
-rw-r--r--data/recipes/default.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js
index 34cf2ef9..edd99f2d 100644
--- a/data/recipes/default.js
+++ b/data/recipes/default.js
@@ -231,13 +231,14 @@ const cheese = crate("cheese")
const lettuce = crate("lettuce")
const mushroom = crate("mushroom")
+const tomato_juice = process(tomato.tr(FP)).as("tomato-juice")
+
// Buns
const dough = process(flour.tr(FP)).as("dough").tr()
const bun = bake(dough).as("bun")
edible(bun.tr(PL))
// Pizza
-const tomato_juice = process(tomato.tr(FP)).as("tomato-juice")
const pizza_dough = roll(dough)
edible_hot(
bake(merge(pizza_dough, tomato_juice, cut(cheese), cut(mushroom))).tr(PL),
@@ -276,9 +277,11 @@ edible_hot(
)
// Soup
-const leek_tj_pot = combine(POT, leek, tomato_juice)
-const tomato_soup_plate = cook(leek_tj_pot).as("tomato-soup").tr(PL)
-edible_hot(tomato_soup_plate)
+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),
+)
// Rice and nigiri
const nigiri = container_add(cut(fish), cook(rice.tr(POT))).as("nigiri").tr(PL)