diff --git a/kubejs/server_scripts/tfc/recipes.machines.js b/kubejs/server_scripts/tfc/recipes.machines.js index 44df72c83..c00e5d436 100644 --- a/kubejs/server_scripts/tfc/recipes.machines.js +++ b/kubejs/server_scripts/tfc/recipes.machines.js @@ -130,6 +130,20 @@ function registerTFCMachineRecipes(event) { .EUt(2) } + event.recipes.gtceu.extruder('tfg:unfired_clay_brick') + .itemInputs('minecraft:clay_ball') + .notConsumable('gtceu:ingot_extruder_mold') + .itemOutputs('tfc:ceramic/unfired_brick') + .duration(20) + .EUt(2) + + event.recipes.gtceu.extruder('tfg:unfired_fire_clay_brick') + .itemInputs('tfc:fire_clay') + .notConsumable('gtceu:ingot_extruder_mold') + .itemOutputs('tfc:ceramic/unfired_fire_brick') + .duration(20) + .EUt(2) + //#endregion //#region Стеклянные смеси в бутылки в ассемблере diff --git a/kubejs/server_scripts/vintage_improvements/recipes.js b/kubejs/server_scripts/vintage_improvements/recipes.js index 3ac41fac7..21837c08c 100644 --- a/kubejs/server_scripts/vintage_improvements/recipes.js +++ b/kubejs/server_scripts/vintage_improvements/recipes.js @@ -643,6 +643,26 @@ function registerVintageImprovementsRecipes(event) { }).id(`tfg:vi/coiling/nylon_string`) // #endregion + + // #region Curving + + event.custom({ + type: 'vintageimprovements:curving', + ingredients: [{ item: 'minecraft:clay_ball' }], + itemAsHead: 'gtceu:ingot_extruder_mold', + results: [{ item: 'tfc:ceramic/unfired_brick' }], + processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id(`tfg:vi/curving/clay_brick`) + + event.custom({ + type: 'vintageimprovements:curving', + ingredients: [{ item: 'tfc:fire_clay' }], + itemAsHead: 'gtceu:ingot_extruder_mold', + results: [{ item: 'tfc:ceramic/unfired_fire_brick' }], + processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id(`tfg:vi/curving/fire_brick`) + + // #endregion } function generateHammeringRecipe(event, material, blows, anvil) { diff --git a/kubejs/startup_scripts/tfc/constants.js b/kubejs/startup_scripts/tfc/constants.js index 57b4dd029..fbf28924d 100644 --- a/kubejs/startup_scripts/tfc/constants.js +++ b/kubejs/startup_scripts/tfc/constants.js @@ -826,7 +826,6 @@ global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = [ { input: '5x minecraft:clay_ball', output: 'tfc:ceramic/unfired_knife_blade_mold', name: 'knife_blade_mold' }, { input: '5x minecraft:clay_ball', output: 'tfc:ceramic/unfired_scythe_blade_mold', name: 'scythe_blade_mold' }, { input: '5x minecraft:clay_ball', output: 'tfc:ceramic/unfired_bell_mold', name: 'bell_mold' }, - { input: '5x minecraft:clay_ball', output: '3x tfc:ceramic/unfired_brick', name: 'brick' }, { input: '5x minecraft:clay_ball', output: '2x tfc:ceramic/unfired_flower_pot', name: 'flower_pot' }, { input: '5x minecraft:clay_ball', output: 'tfc:ceramic/unfired_pan', name: 'pan' }, { input: '5x minecraft:clay_ball', output: 'tfc:ceramic/unfired_blowpipe', name: 'ceramic_blowpipe' }, @@ -839,7 +838,6 @@ global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = [ { input: '5x minecraft:clay_ball', output: 'tfcchannelcasting:unfired_heart_mold', name: 'heart_mold' }, { input: '5x minecraft:clay_ball', output: '2x rnr:unfired_roof_tile', name: 'roof_tile' }, { input: '5x tfc:fire_clay', output: 'tfc:ceramic/unfired_fire_ingot_mold', name: 'fire_ingot_mold' }, - { input: '5x tfc:fire_clay', output: '3x tfc:ceramic/unfired_fire_brick', name: 'fire_brick' }, { input: '5x tfc:fire_clay', output: 'tfc:ceramic/unfired_crucible', name: 'crucible' }, { input: '5x tfc:fire_clay', output: 'tfcchannelcasting:unfired_channel', name: 'channel' }, { input: '5x tfc:fire_clay', output: 'tfcchannelcasting:unfired_mold_table', name: 'mold_table' },