From e4cee7dc1a0da07156173359781d8531669329a8 Mon Sep 17 00:00:00 2001 From: Lunya-sh Date: Sat, 25 Jan 2025 06:23:54 +0100 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D1=8B=20=D1=80=D0=B5=D1=86=D0=B5=D0=BF=D1=82=D1=8B=20Portality?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.zs | 11 +++++++++++ 1 file changed, 11 insertions(+) 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