diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-07 23:56:51 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-07 23:56:51 +0200 |
| commit | 4e655f4e648b64b6f416da7183a8d555745fa163 (patch) | |
| tree | b5eb0a6455553a9baf91e89d84435b234d6c54da /data | |
| parent | ce4e16a1694a38cb75b7b3309deaa80507156aa0 (diff) | |
| download | hurrycurry-4e655f4e648b64b6f416da7183a8d555745fa163.tar hurrycurry-4e655f4e648b64b6f416da7183a8d555745fa163.tar.bz2 hurrycurry-4e655f4e648b64b6f416da7183a8d555745fa163.tar.zst | |
Slow down frying speed
Diffstat (limited to 'data')
| -rw-r--r-- | data/recipes/default.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index a5497b83..dcb36123 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -138,7 +138,7 @@ function roll(s, two) { out({ action: "active", inputs: [s], outputs: [o, two ? o : null], tile: "rolling-board", duration: 2 }) return o } -function deep_fry(s, duration = 10) { +function deep_fry(s, duration = 15) { const o = new Item(`deep-fried-${s.name}`, s.container) out({ action: "passive", duration, revert_duration: duration * 2, tile: "deep-fryer", inputs: [s], outputs: [o] }) out({ action: "passive", duration: duration / 2, revert_duration: duration / 3, tile: "deep-fryer", inputs: [o], outputs: [new Item("burned", BA)], warn: true }) |