aboutsummaryrefslogtreecommitdiff
path: root/data/recipes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'data/recipes.ts')
-rw-r--r--data/recipes.ts11
1 files changed, 6 insertions, 5 deletions
diff --git a/data/recipes.ts b/data/recipes.ts
index c5569a58..04cccf16 100644
--- a/data/recipes.ts
+++ b/data/recipes.ts
@@ -61,7 +61,7 @@ function crate(item: string) {
function get_container(ifull: string): [string, string | null] {
const iparts = ifull.split("-")
const ic = iparts.pop()
- if (ic && iparts.length && ["pot", "plate"].includes(ic)) return [iparts.join("-"), ic]
+ if (ic && iparts.length && ["pot", "plate", "mixer"].includes(ic)) return [iparts.join("-"), ic]
return [ifull, null]
}
@@ -96,16 +96,16 @@ function combine(container: string, ...inputs: string[]) {
}
}
-out({ action: "active", duration: 3, inputs: ["flour"], outputs: ["dough"] })
out({ action: "active", duration: 2, tile: "sink", inputs: ["dirty-plate"], outputs: ["plate"] })
crate("tomato")
crate("raw-steak")
-crate("dirty-plate")
+crate("flour")
+crate("herbs")
+
cut("tomato")
cook("raw-steak", "steak")
combine("plate", "steak-pot", "sliced-tomato", "bread")
-auto_trash()
mix("flour", "dough")
out({ action: "instant", inputs: ["dough-mixer"], outputs: ["mixer", "dough"] })
@@ -114,5 +114,6 @@ bake("dough", "bread")
mix("tomato")
combine("pot", "herbs", "tomato-juice-mixer")
cook("herbs-tomato-juice-pot", "tomato-soop")
-out({ action: "instant", tile: "sink", inputs: ["tomato-soop-pot", "plate"], outputs: ["pot", "tomato-soop-plate"] })
+out({ action: "instant", inputs: ["tomato-soop-pot", "plate"], outputs: ["pot", "tomato-soop-plate"] })
+auto_trash()