diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-25 17:10:32 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-25 17:10:34 +0200 |
commit | d9fb8bbeb54c7b7feb7a48343c929cf63d8aed2f (patch) | |
tree | 124a538f609ed49034858a88c79c98b912d5f5e7 /data | |
parent | 6f5565c49d355b6587102c89b8e5e8547c9956b7 (diff) | |
download | hurrycurry-d9fb8bbeb54c7b7feb7a48343c929cf63d8aed2f.tar hurrycurry-d9fb8bbeb54c7b7feb7a48343c929cf63d8aed2f.tar.bz2 hurrycurry-d9fb8bbeb54c7b7feb7a48343c929cf63d8aed2f.tar.zst |
Add bun crate recipes and to debug map
Diffstat (limited to 'data')
-rw-r--r-- | data/maps/debug.yaml | 5 | ||||
-rw-r--r-- | data/recipes/default.js | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/data/maps/debug.yaml b/data/maps/debug.yaml index 5baf06aa..ccaac980 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 "?": potato-crate + "Ü": bun-crate "X": trash "¹": black-hole-counter @@ -105,7 +106,7 @@ entities: - !item_portal { from: [20, 4], to: [20, 6] } - !environment_effect { name: rain, on: 60, off: 40 } - !environment_effect { name: wind, on: 60, off: 40 } - - !environment [night] + # - !environment [night] tile_entities: "}": !conveyor { dir: [1, 0], filter: dough-foodprocessor } diff --git a/data/recipes/default.js b/data/recipes/default.js index cc2dfab4..1c4b7445 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -241,7 +241,7 @@ edible( // Steak const french_fries = sear(cut(potato)).as("french-fries"); -const bun = bake(dough).as("bun") +const bun = either(bake(dough).as("bun"), crate("bun")) edible( bun.tr(PL), french_fries.tr(PL), |