diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-06-18 19:36:36 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:21:22 +0200 | 
| commit | 48934ff63ee14d4759eda36512af87361dd915dd (patch) | |
| tree | f7a80115eacfee7b6871040a87f5fb0087098ea8 /data | |
| parent | 6ec47d729509db83eaeb6a9d855ce2483d70f227 (diff) | |
| download | hurrycurry-48934ff63ee14d4759eda36512af87361dd915dd.tar hurrycurry-48934ff63ee14d4759eda36512af87361dd915dd.tar.bz2 hurrycurry-48934ff63ee14d4759eda36512af87361dd915dd.tar.zst | |
remodel game.
Diffstat (limited to 'data')
| -rw-r--r-- | data/map.yaml | 12 | ||||
| -rw-r--r-- | data/recipes.yaml | 30 | 
2 files changed, 22 insertions, 20 deletions
| diff --git a/data/map.yaml b/data/map.yaml index 096bb945..ea376bf1 100644 --- a/data/map.yaml +++ b/data/map.yaml @@ -4,13 +4,14 @@ map:      - "|.....c..............|"      - "|c...c...+--www---dd-+"      - "|tc.ctc..|##...##W..#|" -    - "|c...c...w..........S|" +    - "|c...c...w........~.S|"      - "|c.......w..######..T|"      - "|tc......w..........F|" -    - "|c.....ct|##ss##ooo##|" +    - "|c.....ct|##ss#oopp##|"      - "+---dd---+-----------+"  tiles: +    "~": spawn      ".": floor      "+": wall      "-": wall @@ -22,7 +23,8 @@ tiles:      "w": window      "s": sink      "o": oven +    "p": pan      "W": watercooler -    "S": raw-steak-spawn -    "T": tomato-spawn -    "F": flour-spawn +    "S": raw-steak-crate +    "T": tomato-crate +    "F": flour-crate diff --git a/data/recipes.yaml b/data/recipes.yaml index e95c6e03..713509df 100644 --- a/data/recipes.yaml +++ b/data/recipes.yaml @@ -1,23 +1,23 @@ -- { tile: floor, action: !never  } +# - { tile: floor, action: !never  } -- { tile: window, inputs: [steak-meal, void] } -- { tile: window, inputs: [sliced-tomato-meal, void] } -- { tile: window, inputs: [bread-meal, void] } -- { tile: window, inputs: [burger-meal, void] } -- { tile: window, inputs: [tomatosteak-meal, void] } -- { tile: window, inputs: [tomatoburger-meal, void] } +# - { tile: window, inputs: [steak-meal, void] } +# - { tile: window, inputs: [sliced-tomato-meal, void] } +# - { tile: window, inputs: [bread-meal, void] } +# - { tile: window, inputs: [burger-meal, void] } +# - { tile: window, inputs: [tomatosteak-meal, void] } +# - { tile: window, inputs: [tomatoburger-meal, void] }  - { tile: trash, action: !instant , inputs: [raw-steak] }  - { tile: trash, action: !instant , inputs: [steak] }  - { tile: trash, action: !instant , inputs: [flour] }  - { tile: trash, action: !instant , inputs: [dough] }  - { tile: trash, action: !instant , inputs: [steak-meal] } -- { tile: counter, inputs: [raw-steak, void] } -- { tile: counter, inputs: [sliced-tomato, void] } -- { tile: counter, inputs: [dough, void] } -- { tile: counter, inputs: [bread, void] } +# - { tile: counter, inputs: [raw-steak, void] } +# - { tile: counter, inputs: [sliced-tomato, void] } +# - { tile: counter, inputs: [dough, void] } +# - { tile: counter, inputs: [bread, void] } -- tile: tomato-spawn # Tomato pipeline +- tile: tomato-crate # Tomato pipeline    outputs: [tomato]    action: !instant  - tile: counter @@ -29,7 +29,7 @@    outputs: [sliced-tomato-meal]    action: !instant -- tile: flour-spawn # Bread pipeline +- tile: flour-crate # Bread pipeline    outputs: [flour]    action: !instant  - tile: counter @@ -45,7 +45,7 @@    outputs: [bread-meal]    action: !instant -- tile: raw-steak-spawn # Steak pipeline +- tile: raw-steak-crate # Steak pipeline    action: !instant    outputs: [raw-steak]  - tile: pan @@ -83,7 +83,7 @@    outputs: [glass]    action: !instant -- tile: dirty-plate-spawn # Cleaning +- tile: dirty-plate-crate # Cleaning    outputs: [dirty-plate]    action: !instant  - tile: sink | 
