From a0e07e40af6c7771be3e6f47b2aaad3cf8d3e224 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Mon, 18 Dec 2023 10:03:35 +0700 Subject: [PATCH] Update recipes.js --- kubejs/server_scripts/tfc/recipes.js | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 37d711264..c6ead6aa1 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -990,6 +990,35 @@ const registerTFCRecipes = (event) => { .itemOutputs(`tfc:sand/${sandColor}`) .duration(400) .EUt(2) + + // Песок -> Песчанник + event.recipes.gtceu.compressor(`sand_${sandColor}_to_sandstone`) + .itemInputs(`4x tfc:sand/${sandColor}`) + .itemOutputs(`tfc:raw_sandstone/${sandColor}`) + .duration(800) + .EUt(2) + + // Песчанник -> Гладкий песчанник + event.stonecutting(`tfc:smooth_sandstone/${sandColor}`, `tfc:raw_sandstone/${sandColor}`) + .id(`tfg:stonecutting/raw_sandstone_${sandColor}_to_smooth_sandstone`) + + event.recipes.gtceu.cutter(`raw_sandstone_${sandColor}_to_smooth_sandstone`) + .itemInputs(`tfc:raw_sandstone/${sandColor}`) + .circuit(3) + .itemOutputs(`tfc:smooth_sandstone/${sandColor}`) + .duration(100) + .EUt(8) + + // Песчанник -> Обрезанный песчанник + event.stonecutting(`tfc:cut_sandstone/${sandColor}`, `tfc:raw_sandstone/${sandColor}`) + .id(`raw_sandstone_${sandColor}_to_cut_sandstone`) + + event.recipes.gtceu.cutter(`cut_sandstone_${sandColor}_to_smooth_sandstone`) + .itemInputs(`tfc:raw_sandstone/${sandColor}`) + .circuit(4) + .itemOutputs(`tfc:cut_sandstone/${sandColor}`) + .duration(100) + .EUt(8) // Песчанник -> Ступень event.stonecutting(`tfc:raw_sandstone/${sandColor}_stairs`, `tfc:raw_sandstone/${sandColor}`)