Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yourname942/2a9e1c57217fbe5556aa45b4b496b899 to your computer and use it in GitHub Desktop.
Save Yourname942/2a9e1c57217fbe5556aa45b4b496b899 to your computer and use it in GitHub Desktop.
recipeConflictFixes.zs 4:37pm_5_7_20
import crafttweaker.item.IItemStack;
import crafttweaker.item.IIngredient;
//ringIron bountiful baubles
recipes.removeShaped(<bountifulbaubles:ringiron>, [[null, <ore:ingotIron>, null], [<ore:ingotIron>, null, <ore:ingotIron>], [null, <ore:ingotIron>, null]]);
recipes.addShaped("bountifulbaubles_ringiron", <bountifulbaubles:ringiron>, [[<minecraft:iron_nugget>, <ore:ingotIron>, <minecraft:iron_nugget>], [<ore:ingotIron>, null, <ore:ingotIron>], [<minecraft:iron_nugget>, <ore:ingotIron>, <minecraft:iron_nugget>]]);
// stone gear ender io
// stone gear ex nihilo creatio
// stone gear thermal foundation
//gearGold thermal foundation
recipes.remove(<thermalfoundation:material:25>);
recipes.addShaped("thermalfoundation_geargold", <thermalfoundation:material:25>, [[null, <minecraft:gold_nugget>, null], [<minecraft:gold_ingot>, null, <minecraft:gold_ingot>], [null, <minecraft:gold_ingot>, null]]);
//gearStone thermal foundation
recipes.remove(<thermalfoundation:material:25>);
recipes.addShaped("thermalfoundation_geargold", <thermalfoundation:material:25>, [[null, <minecraft:stone_button>, null], [<minecraft:stone>, null, <minecraft:stone>], [null, <minecraft:stone>, null]]);
//gearStone EnderIO
recipes.remove(<enderio:item_material:10>);
recipes.addShaped("enderio_gearstone", <enderio:item_material:10>, [[null, <minecraft:stone>, null], [<minecraft:stone>, null, <minecraft:stone_button>], [null, <minecraft:stone>, null]]);
//gearStone Ex Nihilo Creatio
recipes.removeRecipeByName("exnihilocreatio:gear_stone");
recipes.addShaped("exnihilocreatio_gearstone", <exnihilocreatio:material:7>, [[null, <minecraft:stone>, null], [<minecraft:stone>, null, <minecraft:stone>], [null, <minecraft:stone_button>, null]]);
//gearWooden Applied Energistics 2
recipes.remove(<appliedenergistics2:material:40>);
recipes.addShaped("appliedenergistics2_gearwooden", <appliedenergistics2:material:40>, [[<ore:stickWood>, null, <ore:stickWood>], [null, null, null], [<ore:stickWood>, null, <ore:stickWood>]]);
//gearWooden EnderIO
recipes.remove(<enderio:item_material:9>);
recipes.addShaped("exnihilocreatio_gearwooden", <enderio:item_material:9>, [[<ore:stickWood>, <ore:stickWood>, null], [<ore:stickWood>, null, <ore:stickWood>], [null, <ore:stickWood>, <ore:stickWood>]]);
//gearWooden thermal foundation
recipes.remove("thermalfoundation:material_59");
recipes.addShaped("exnihilocreatio_gearwooden", <enderio:item_material:9>, [[null, <ore:stickWood>, <ore:stickWood>], [<ore:stickWood>, null, <ore:stickWood>], [<ore:stickWood>, <ore:stickWood>, null]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment