diff options
Diffstat (limited to 'data')
-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") |