aboutsummaryrefslogtreecommitdiff
path: root/data/recipes
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-21 16:54:28 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-21 16:56:20 +0200
commite51dab4be6732bd77777dfe42bbaddfc5fa21d20 (patch)
tree6bada3162f90b4faa689221baf76be222d1cba4f /data/recipes
parente887033d29647603534a1732dc3b3bf5d85ddaf8 (diff)
downloadhurrycurry-e51dab4be6732bd77777dfe42bbaddfc5fa21d20.tar
hurrycurry-e51dab4be6732bd77777dfe42bbaddfc5fa21d20.tar.bz2
hurrycurry-e51dab4be6732bd77777dfe42bbaddfc5fa21d20.tar.zst
more foods
Diffstat (limited to 'data/recipes')
-rw-r--r--data/recipes/default.ts10
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")