diff options
| -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 + | 
