From 321f799dab89a2cdaccfc1f302999e3945e14b9a Mon Sep 17 00:00:00 2001 From: FriendlyCube Date: Thu, 30 Nov 2023 01:09:33 +0200 Subject: [PATCH] =?UTF-8?q?(=D0=9D=D0=95=20=D0=97=D0=90=D0=91=D0=AB=D0=A2?= =?UTF-8?q?=D0=AC(=D0=A1=D0=9C=20=D0=9E=D0=9F=D0=98=D0=A1=D0=90=D0=9D?= =?UTF-8?q?=D0=98=D0=95))=20recipes=20engraver=20for=20laser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit НЕ ЗАБЫТЬ СДЕЛАТЬ FLUIX LENS ДЛЯ КРАФТА НИЖЕ (В 1 12 в крафте используется fluix lens) так же надеюсь ты не забыл сделать жидкости для истин кварц и fluix, для крафта fluix pearl, fluix glass cable, fluix plate решить проблему с 'ae2:printed_logic_processor' --- kubejs/server_scripts/ae2/recipes.js | 84 +++++++++++++++++++++++++--- 1 file changed, 77 insertions(+), 7 deletions(-) diff --git a/kubejs/server_scripts/ae2/recipes.js b/kubejs/server_scripts/ae2/recipes.js index 098ddd76b..1e82e8bf2 100644 --- a/kubejs/server_scripts/ae2/recipes.js +++ b/kubejs/server_scripts/ae2/recipes.js @@ -1356,16 +1356,16 @@ const registerAE2Recipes = (event) => { // printed engineering processor event.recipes.gtceu.forming_press('ae2:printed_engineering_processor') - .itemInputs( - '#forge:plates/diamond', - 'ae2:engineering_processor_press',) - .itemOutputs('ae2:printed_engineering_processor') - .duration(20) - .EUt(480) + .itemInputs( + '#forge:plates/diamond', + 'ae2:engineering_processor_press',) + .itemOutputs('ae2:printed_engineering_processor') + .duration(20) + .EUt(480) // printed logic processor event.recipes.gtceu.forming_press('ae2:printed_logic_processor') - .itemInputs( + .itemInputs( '#forge:plates/gold', 'ae2:logic_processor_press',) .itemOutputs('ae2:printed_logic_processor') @@ -1525,5 +1525,75 @@ const registerAE2Recipes = (event) => { .EUt(7) }; + // laser_engraver + // Inscriber Silicon Press + event.recipes.gtceu.laser_engraver('ae2:silicon_press_iron') + .itemInputs( + '#forge:plates/iron') + .notConsumable('#forge:lenses/white') + .itemOutputs('ae2:silicon_press') + .duration(12000) + .EUt(116) + event.recipes.gtceu.laser_engraver('ae2:silicon_press_wrought_iron') + .itemInputs( + '#forge:plates/wrought_iron') + .notConsumable('#forge:lenses/white') + .itemOutputs('ae2:silicon_press') + .duration(8000) + .EUt(116) + + // Inscriber logic Press + event.recipes.gtceu.laser_engraver('ae2:logic_processor_press_iron') + .itemInputs( + '#forge:plates/iron') + .notConsumable('#forge:lenses/green') + .itemOutputs('ae2:logic_processor_press') + .duration(12000) + .EUt(116) + event.recipes.gtceu.laser_engraver('ae2:logic_processor_press_wrought_iron') + .itemInputs( + '#forge:plates/wrought_iron') + .notConsumable('#forge:lenses/green') + .itemOutputs('ae2:logic_processor_press') + .duration(8000) + .EUt(116) +// +// +// НЕ ЗАБЫТЬ СДЕЛАТЬ FLUIX LENS ДЛЯ КРАФТА НИЖЕ (В 1 12 в крафте используется fluix lens) +// так же надеюсь ты не забыл сделать жидкости для истин кварц и fluix, для крафта fluix pearl, fluix glass cable, fluix plate +// +// + // Inscriber engineering Press + event.recipes.gtceu.laser_engraver('ae2:engineering_press_iron') + .itemInputs( + '#forge:plates/iron') + .notConsumable('#forge:lenses/light_blue') + .itemOutputs('ae2:engineering_processor_press') + .duration(12000) + .EUt(116) + event.recipes.gtceu.laser_engraver('ae2:engineering_press_wrought_iron') + .itemInputs( + '#forge:plates/wrought_iron') + .notConsumable('#forge:lenses/light_blue') + .itemOutputs('ae2:engineering_processor_press') + .duration(8000) + .EUt(116) + + // Inscriber calculation Press + event.recipes.gtceu.laser_engraver('ae2:calculation_press_iron') + .itemInputs( + '#forge:plates/iron') + .notConsumable('#forge:lenses/blue') + .itemOutputs('ae2:calculation_processor_press') + .duration(12000) + .EUt(116) + event.recipes.gtceu.laser_engraver('ae2:calculation_press_wrought_iron') + .itemInputs( + '#forge:plates/wrought_iron') + .notConsumable('#forge:lenses/blue') + .itemOutputs('ae2:calculation_processor_press') + .duration(8000) + .EUt(116) + }