#Name: recipe_changes.zs #Author: Feed the Beast print("Initializing 'recipe_changes.zs'..."); #Remove ChunkLoaders (use FTBU to manage chunkloading) recipes.remove(); #Atempt to fix TiC grout shapless recipe recipes.addShapeless( * 2, [, , ]); #Fix wood gear recipe in grindstone recipes.remove(); #Remove ExU2 Sickles to prevent overlap with Thermal Foundation Sickles recipes.remove(); recipes.remove(); recipes.remove(); recipes.remove(); recipes.remove(); #Changed Bark recipe to prevent overlap with Wood piles recipes.remove(); recipes.addShaped( * 2, [ [, , ], [, , ], [, , ] ] ); recipes.remove(); recipes.addShaped( * 2, [ [, , ], [, , ], [, , ] ] ); recipes.remove(); recipes.addShaped( * 2, [ [, , ], [, , ], [, , ] ] ); recipes.remove(); recipes.addShaped( * 2, [ [, , ], [, , ], [, , ] ] ); recipes.remove(); recipes.addShaped( * 2, [ [, , ], [, , ], [, , ] ] ); recipes.remove(); recipes.addShaped( * 2, [ [, , ], [, , ], [, , ] ] ); #Convert Quark deco adds to vanilla equiv recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); #Items removed due to bugs recipes.remove(); .addTooltip(format.darkRed("Disabled due to bug!")); recipes.remove(); .addTooltip(format.darkRed("Disabled due to bug!")); #Changed Iron Lattice recipe to fix conflict with iron gears recipes.remove(); recipes.addShaped( * 4, [ [null, , null], [, , ], [null, , null] ] ); #Reduce crafting of bronze ingots to 2 from 4 in crafting table, various machine outputs are still 4 recipes.remove(); recipes.addShapeless( * 2, [, , , ] ); #Fix bronze gear recipe recipes.addShaped(, [ [null, , null], [, , ], [null, , null] ] ); #Experience Solidifier recipes.remove(); recipes.addShaped(, [ [, , ], [, , ], [, , ] ] ); #Harvestcraft Cracker Recipe recipes.remove(); recipes.addShapeless( * 2, [, ] ); #Architecture Craft Pulley recipes.remove(); recipes.addShaped(, [ [null, , null], [, , ], [null, , null] ] ); #Removed Charcoal Block (chisel) to allow AA's version be default which is registered as a fuel type recipes.remove(); #Wither ash recipes.addShaped(, [ [, , ], [, , ], [, , ] ] ); #Fix barley seed overlap recipes.remove(); recipes.addShapeless( * 2, [, ] ); #Steel Casing recipes.addShapeless( * 2, [,] ); #Essence of Scornful Oblivion recipes.addShaped(, [ [, , ], [, null, ], [, , ] ] ); #Computercraft modem fix recipes.remove(); recipes.addShapeless(, [] ); recipes.addShapeless(, [] ); recipes.addShaped(, [ [, , ], [, , ], [, , ] ] ); #End star fix recipes.remove(); recipes.addShaped(, [ [, , ], [, , ], [, , ] ] ); #Rustic Rope fix recipes.remove(); recipes.addShaped( * 24, [ [, null, ], [, null, ], [, null, ] ] ); #Fix RC loader/Unloader steel shovels recipes.addShaped(, [ [, , ], [, , ], [, , ] ] ); recipes.addShaped(, [ [, , ], [, , ], [, , ] ] ); #Fix broken recipe recipes.remove(.withTag({Type: "extrautils2:generator_slime"})); recipes.addShaped(.withTag({Type: "extrautils2:generator_slime"}), [ [, , ], [, , ], [, .withTag({Type: "extrautils2:generator"}), ] ] ); #Fix recipe conflict recipes.remove(); recipes.addShaped(.withTag({textureBlock: {id: "minecraft:wooden_slab", Count: 1 as byte, Damage: 0 as short}}), [ [, , ] ] ); #Fix Zinc Grains being useless recipes.addShapeless(, [] ); #Fix Mossy Stone Brick Stair recipe recipes.addShaped( * 4, [ [, null, null], [, , null], [null, null, null] ] ); # Fix Pure Certus in Insolator mods.thermalexpansion.Insolator.removeRecipe(, ); mods.thermalexpansion.Insolator.removeRecipe(, ); mods.thermalexpansion.Insolator.removeRecipe(, ); mods.thermalexpansion.Insolator.addRecipe(, .withTag({progress: 0}), , 1500, null, 0, 3000); mods.thermalexpansion.Insolator.addRecipe(, .withTag({progress: 1200}), , 1500, null, 0, 3000); mods.thermalexpansion.Insolator.addRecipe(, .withTag({progress: 600}), , 1500, null, 0, 3000); print("Initialized 'recipe_changes.zs'");