From 6eab355611872d9fd97d2bab16b85ea716787483 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 20 Jun 2024 16:38:44 +0200 Subject: grey cursor when no interaction possible --- data/recipes.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'data') 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], }) -- cgit v1.2.3-70-g09d2