diff --git a/main.zs b/main.zs index debfee3..01592f1 100644 --- a/main.zs +++ b/main.zs @@ -221,6 +221,8 @@ val unusedMaterials = [ //Usless NuclearCraft alloys ] as IItemStack[]; val changeRecipes = [ //Other changed recipes + , + , , , , @@ -326,8 +328,13 @@ for item in removedvanillagear { mods.nuclearcraft.manufactory.removeAllRecipes(); //Adding crafting recipes + //Portality + recipes.addShaped(, [[, , ],[, , ], [, , ]]); + recipes.addShaped(, [[, , ],[, , ], [, , ]]); //Millenaire recipes.addShaped(, [[null, , ],[null, , ], [, null, null]]); + //Immersive Engineering + recipes.addShaped("revolverbarrelDisassembly",*2,[[null, null, null],[, , ], [null, null, null]]); //NuclearCraft recipes.addShaped(, [[, , ],[, , ], [, , ]]); recipes.addShaped(, [[, , ],[, , ], [, , ]]); @@ -517,3 +524,7 @@ for item in removedvanillagear { recipes.addShaped("coolerDisassemblyGlowstone",,[[null, null, null],[, , ], [null, null, null]], function(out,ins,cInfo){return out;}, function(out,cInfo,player){player.dropItem(*6);player.dropItem(*2);}); + //IE revolver drum disassembly + recipes.addShaped("revolverDrumDisassembly",,[[null, null, null],[, , ], [null, null, null]], + function(out,ins,cInfo){return out;}, + function(out,cInfo,player){player.dropItem(*4);}); \ No newline at end of file