// --- Created DreamMasterXXL --- // --- Imports --- import mods.gregtech.Assembler; // --- Variables --- val SteelPlate = ; val CopperWire = ; val Circuit = ; val GlassLens = ; val DiamondLens = ; val GlassPane = ; val Mantle = ; val TitaniumPlates = ; // --- Remove Recipes --- // --- Electric Floodlight recipes.remove(); // --- Non-Electric Floodlight recipes.remove(); // --- Small Flurocen Light recipes.remove(); // --- Square Flurocen Light recipes.remove(); // --- UV Floodlight recipes.remove(); // --- Raw Filament recipes.remove(); // --- Glowing Filament furnace.remove(); // --- Electric Incandescent Light Bulb recipes.remove(); // --- Fuel Dissolver recipes.remove(); // --- Non Electrical Latern recipes.remove(); // --- Mantle recipes.remove(Mantle); // --- Grow Light recipes.remove(); // --- Adding Recipes --- // --- Electric Floodlight recipes.addShaped(, [ [SteelPlate, GlassLens, SteelPlate], [Circuit, , Circuit], [SteelPlate, CopperWire, SteelPlate]]); // --- Non-Electric Floodlight recipes.addShaped(, [ [SteelPlate, GlassLens, SteelPlate], [Circuit, , Circuit], [SteelPlate, CopperWire, SteelPlate]]); // --- UV Floodlight recipes.addShaped(, [ [SteelPlate, DiamondLens, SteelPlate], [Circuit, , Circuit], [SteelPlate, CopperWire, SteelPlate]]); // --- Non Electrical Latern recipes.addShaped(, [ [GlassPane, GlassPane, GlassPane], [Mantle, , Mantle], [GlassPane, , GlassPane]]); // --- Small Flurocen Light recipes.addShapeless( * 2, []); // --- Square Flurocen Light recipes.addShapeless(, [, ]); // --- Grow Light recipes.addShaped(, [ [, , ], [, , ], [TitaniumPlates, , TitaniumPlates]]); // --- Assembler Recipes --- // --- Mantle Assembler.addRecipe(Mantle, , * 8, 100, 30); // --- Electric Incandescent Light Bulb Assembler.addRecipe(, , * 2, * 1, 200, 120); // --- Fuel Dissolver Assembler.addRecipe(, * 3, * 2, * 144, 200, 64); // --- Square Flurocen Light Assembler.addRecipe(, , * 2, * 288, 200, 120);