// --- Created by DreamMasterXXL and Methes --- // --- Imports --- import mods.gregtech.Assembler; import mods.gregtech.BlastFurnace; import mods.gregtech.ChemicalReactor; // --- Variables --- val SensorMV = ; val CircuitGood = ; // --- Remove Recipes // --- Online Detector recipes.remove(); // --- Moon Sensor recipes.remove(); // --- Blood Moon Sensor recipes.remove(); // --- Lapis Lamp recipes.remove(); // --- Imbuing Station recipes.remove(); // --- Energy Distributer recipes.remove(); // --- Ender Energy Distributer recipes.remove(); // --- Item Collector recipes.remove(); // --- Advanced Item Collector recipes.remove(); // --- Dyeing Machine recipes.remove(); // --- Player Interface recipes.remove(); // --- All Filter recipes.remove(); // --- All Ingredients recipes.remove(); // --- Fertilized Dirt recipes.remove(); // --- Fluid Display recipes.remove(); // --- Advanecd Fluid Display recipes.remove(); // --- Wireless Lever recipes.remove(); // --- Void Stone recipes.remove(); // --- Void Filer recipes.remove(); // --- Spectre Key recipes.remove(); // --- Adding recipes --- // --- Bloodmoon Sensor recipes.addShapedMirrored(, [ [, null], [, null]]); // --- LapisLamp recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- MoonSensor recipes.addShapedMirrored(, [ [, null], [, null]]); // --- OnlineDetector recipes.addShaped(, [ [, SensorMV, ], [, , ], [, CircuitGood, ]]); // - recipes.addShaped(, [ [, SensorMV, ], [, , ], [, CircuitGood, ]]); // --- Imbuing Station recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- Ender Energy Distributer recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- Energy Distributer recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- Item Collector recipes.addShaped(, [ [null, , null], [, , ], [null, , null]]); // --- Advanced Item Collector recipes.addShapeless(, []); // --- Dyeing Machine recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- Player Interface recipes.addShapeless(, [, ]); // --- Void Stone recipes.addShapeless(, [, ]); // --- Assembler Recipes --- // --- Transformation Core Assembler.addRecipe(, , , 150, 120); // --- Player Core Assembler.addRecipe(, , * 4, 250, 480); // --- Fluid Display Assembler.addRecipe( * 8, * 16, * 0, * 72, 200, 30); // --- Advanecd Fluid Display Assembler.addRecipe(, , * 0, * 144, 200, 30); // --- Block Filter Assembler.addRecipe(, , , 200, 30); // --- Item Filter Assembler.addRecipe(, , , 200, 30); // --- Entity Filter Assembler.addRecipe(, , , 200, 30); // --- Position Filter Assembler.addRecipe(, , , 200, 120); // --- Wireless Lever Assembler.addRecipe(, , , * 1000, 300, 30); // --- Whitestone Assembler.addRecipe(, * 4, * 0, * 4000, 1200, 480); // --- Bloodstone //Assembler.addRecipe(, , * 0, * 1296, 1200, 30); // --- Void Filer Assembler.addRecipe(, , * 0, * 250, 300, 30); // --- Spectre Key Assembler.addRecipe(, , , * 1000, 600, 1024); // --- Blast Furnace recipes --- // --- Spectre Iron BlastFurnace.addRecipe([], [, ], 1200, 480, 2500); // --- Chemical Reactor Recipes --- // --- Ender Diamond ChemicalReactor.addRecipe(, null, , * 0, * 1000, 1200, 30); // --- Fertilized Dirt ChemicalReactor.addRecipe(, null, , * 4, * 1000, 100, 30); // - ChemicalReactor.addRecipe(, null, , * 2, * 1000, 100, 30); // - ChemicalReactor.addRecipe(, null, , * 2, * 1000, 100, 30); // --- Hiding Stuff ---