summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/recipes.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/data/recipes.ts b/data/recipes.ts
index 534f1e6d..1c384f14 100644
--- a/data/recipes.ts
+++ b/data/recipes.ts
@@ -40,13 +40,13 @@ function cook(from: string, to?: string) {
const i = from + "-pot"
const o = (to ?? ("cooked-" + from)) + "-pot"
out({ action: "instant", inputs: ["pot", from], outputs: [i] })
- out({ action: "passive", duration: 10, tile: "stove", inputs: [i], outputs: [o] })
- out({ action: "passive", duration: 10, tile: "stove", inputs: [o], outputs: ["burned-pot"], warn: true })
+ out({ action: "passive", duration: 20, tile: "stove", inputs: [i], outputs: [o] })
+ out({ action: "passive", duration: 5, tile: "stove", inputs: [o], outputs: ["burned-pot"], warn: true })
}
function bake(from: string, to?: string) {
const o = (to ?? ("cooked-" + from))
- out({ action: "passive", duration: 20, tile: "oven", inputs: [from], outputs: [o] })
- out({ action: "passive", duration: 20, tile: "oven", inputs: [o], outputs: ["burned"], warn: true })
+ out({ action: "passive", duration: 25, tile: "oven", inputs: [from], outputs: [o] })
+ out({ action: "passive", duration: 15, tile: "oven", inputs: [o], outputs: ["burned"], warn: true })
}
function crate(item: string) {
out({ action: "instant", tile: item + "-crate", inputs: [], outputs: [item], })