diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/demands.yaml | 8 | ||||
-rw-r--r-- | data/recipes.ts | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/data/demands.yaml b/data/demands.yaml index fdc66fda..0a2b9706 100644 --- a/data/demands.yaml +++ b/data/demands.yaml @@ -13,14 +13,14 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # -- { from: bread-plate, to: dirty-plate, duration: 10 } +- { from: bread-slice-plate, to: dirty-plate, duration: 10 } - { from: steak-plate, to: dirty-plate, duration: 10 } - { from: sliced-tomato-plate, to: dirty-plate, duration: 10 } -- { from: bread-steak-plate, to: dirty-plate, duration: 15 } -- { from: bread-sliced-tomato-plate, to: dirty-plate, duration: 15 } +- { from: bread-slice-steak-plate, to: dirty-plate, duration: 15 } +- { from: bread-slice-sliced-tomato-plate, to: dirty-plate, duration: 15 } - { from: sliced-tomato-steak-plate, to: dirty-plate, duration: 15 } -- { from: bread-sliced-tomato-steak-plate, to: dirty-plate, duration: 20 } +- { from: bread-slice-sliced-tomato-steak-plate, to: dirty-plate, duration: 20 } - { from: tomato-soop-plate, to: dirty-plate, duration: 20 } diff --git a/data/recipes.ts b/data/recipes.ts index 90307e88..8ae9bcd4 100644 --- a/data/recipes.ts +++ b/data/recipes.ts @@ -126,7 +126,8 @@ crate("herbs") cut("tomato") cook("raw-steak", "steak") -combine("plate", "steak-pot", "sliced-tomato", "bread") +cut("bread", "bread-slice") +combine("plate", "steak-pot", "sliced-tomato", "bread-slice") process("flour", "dough") out({ action: "instant", inputs: ["dough-foodprocessor"], outputs: ["foodprocessor", "dough"] }) |