aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-20 16:38:44 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-23 19:24:32 +0200
commit6eab355611872d9fd97d2bab16b85ea716787483 (patch)
tree81bdd82d9e68f2f6090b57470bdb5ea20198e333 /data
parent20556b7f754ff40860cc69bb3cd67b42581509a3 (diff)
downloadhurrycurry-6eab355611872d9fd97d2bab16b85ea716787483.tar
hurrycurry-6eab355611872d9fd97d2bab16b85ea716787483.tar.bz2
hurrycurry-6eab355611872d9fd97d2bab16b85ea716787483.tar.zst
grey cursor when no interaction possible
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], })