// --- Created by DreamMasterXXL --- // --- Importing Stuff --- import mods.gregtech.CuttingSaw; // --- Variables --- val Saw = ; // --- Removing Recipes --- // --- Nether Planks recipes.remove(); // --- Nether Bed recipes.remove(); // --- Quartz Sword recipes.remove(); // --- Quartz Shovel recipes.remove(); // --- Quartz Pickaxe recipes.remove(); // --- Quartz Axe recipes.remove(); // --- Quartz Hoe recipes.remove(); // --- Quartz Helm recipes.remove(); // --- Quartz Chestplate recipes.remove(); // --- Quartz Leggins recipes.remove(); // --- Quartz Boots recipes.remove(); // --- Adding Back Recipes --- // --- Nether Planks recipes.addShapeless( * 2, []); // - recipes.addShaped( * 4, [[Saw, , null]]); // --- Nether Bed recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- Quartz Sword recipes.addShaped(, [ [null, , null], [, * 64, ], [, , ]]); // --- Quartz Shovel recipes.addShaped(, [ [, * 64, ], [, , ], [null, , null]]); // --- Quartz Pickaxe recipes.addShaped(, [ [, , ], [, , ], [null, , null]]); // --- Quartz Axe recipes.addShaped(, [ [, , ], [, , null], [, , null]]); // --- Quartz Hoe recipes.addShaped(, [ [, , ], [, , null], [null, , null]]); // --- Quartz Helm recipes.addShaped(, [ [, , ], [, , ], [null, null, null]]); // --- Quartz Chestplate recipes.addShaped(, [ [, , ], [, , ], [, , ]]); // --- Quartz Leggins recipes.addShaped(, [ [, , ], [, , ], [, null, ]]); // --- Quartz Boots recipes.addShaped(, [ [, null, ], [, , ], [null, null, null]]); // --- Glow Flower Seed recipes.addShapeless(, []); // --- Cutting Saw Recipes --- // --- Nether Planks CuttingSaw.addRecipe( * 6, , , * 5, 200, 8); // - CuttingSaw.addRecipe( * 6, , , * 3, 200, 8); // - CuttingSaw.addRecipe( * 6, , , * 1, 200, 8); // --- Quartz Ingot CuttingSaw.addRecipe( * 2, null, , * 5, 100, 16); // - CuttingSaw.addRecipe( * 2, null, , * 3, 100, 16); // - CuttingSaw.addRecipe( * 2, null, , * 1, 100, 16);