diff options
| -rw-r--r-- | data/recipes/default.js | 11 | 
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) | 
