diff options
| -rw-r--r-- | data/maps/debug.yaml | 3 | ||||
| -rw-r--r-- | data/recipes/default.js | 40 | 
2 files changed, 27 insertions, 16 deletions
diff --git a/data/maps/debug.yaml b/data/maps/debug.yaml index 08510783..c1a4e70e 100644 --- a/data/maps/debug.yaml +++ b/data/maps/debug.yaml @@ -18,7 +18,7 @@ map:      - "........................"      - "...~...................."      - "........................" -    - "..0123456789ß`.........." +    - "..0123456789ß`?........."      - "....................¹..."      - "..⌷fRC.SToo..X......⌷..."      - "..s⌷⌷⌷ɷ⌷⌷zz.........²..." @@ -60,6 +60,7 @@ tiles:      "9": lettuce-crate      "ß": mushroom-crate      "`": chili-crate +    "?": potato-crate      "X": trash      "¹": black-hole-counter 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")  |