diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-17 14:19:19 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:20:08 +0200 |
commit | 428fa6fb8dac18c541c0c231f1b640ba172e52b9 (patch) | |
tree | c550dc23f6abc55e01b161bfaca88c29245d0ed3 /data | |
parent | 780acc6e06e4cf5746a50ab9f88fe3fff7a966db (diff) | |
download | hurrycurry-428fa6fb8dac18c541c0c231f1b640ba172e52b9.tar hurrycurry-428fa6fb8dac18c541c0c231f1b640ba172e52b9.tar.bz2 hurrycurry-428fa6fb8dac18c541c0c231f1b640ba172e52b9.tar.zst |
less lists
Diffstat (limited to 'data')
-rw-r--r-- | data/items.yaml | 74 | ||||
-rw-r--r-- | data/recipes_raw.yaml | 37 |
2 files changed, 74 insertions, 37 deletions
diff --git a/data/items.yaml b/data/items.yaml index d1958937..ef379687 100644 --- a/data/items.yaml +++ b/data/items.yaml @@ -1,68 +1,68 @@ # tomato pipeline -- tomato: - - traits: +tomato: + traits: - raw -- sliced-tomato: - - traits: +sliced-tomato: + traits: - food -- sliced-tomato-meal: - - traits: +sliced-tomato-meal: + traits: - meal # bread pipeline -- flour: - - traits: +flour: + traits: - raw -- dough: - - traits: +dough: + traits: - bakeable -- bread: - - traits: +bread: + traits: - food -- bread-meal: - - traits: +bread-meal: + traits: - meal # steak pipeline -- raw-steak: - - traits: +raw-steak: + traits: - raw -- steak: - - traits: +steak: + traits: - food -- steak-meal: - - traits: +steak-meal: + traits: - meal # combination meals -- tomatosteak-meal: - - traits: +tomatosteak-meal: + traits: - meal -- burger-meal: - - traits: +burger-meal: + traits: - meal -- tomatoburger-meal: - - traits: +tomatoburger-meal: + traits: - meal # containers -- glass: - - traits: +glass: + traits: - container - cup - empty-cup -- water: - - traits: +water: + traits: - container - cup -- plate: - - traits: +plate: + traits: - container - - contains: + contains: - food - glass -- dirty-glass: - - traits: +dirty-glass: + traits: - dirty - glass -- dirty-plate: - - traits: +dirty-plate: + traits: - dirty diff --git a/data/recipes_raw.yaml b/data/recipes_raw.yaml new file mode 100644 index 00000000..75939c11 --- /dev/null +++ b/data/recipes_raw.yaml @@ -0,0 +1,37 @@ + +- tile: cutting-plate + inputs: [tomato] + outputs: [sliced-tomato] + duration: 3 + active: true + +- tile: sink + inputs: [empty-bottle] + outputs: [water-bottle] + instant: true + +- tile: dishwasher + inputs: [dirty-dish] + output: [empty-dish] + duration: 10 + +- tile: table + inputs: [steak, herbs] + outputs: [steak-with-herbs] + ordered: true + instant: true + +- tile: table + inputs: [apple-juice-bottle, carbonated-water-bottle] + outputs: [apply-soda-bottle, empty-bottle] + instant: true + +- tile: table + inputs: [empty-cup, <a>-bottle] + outputs: [<a>-cup, empty-bottle] + instant: true + +- tile: flour-bag + outputs: [flour] + instant: true + |