diff --git a/main.zs b/main.zs index c28e778..6988072 100644 --- a/main.zs +++ b/main.zs @@ -404,6 +404,7 @@ for item in removedvanillagear { recipes.addShaped(.withTag({blueprint: "MW Mags"}), [[, , ],[, , ], [, , ]]); recipes.addShaped(.withTag({blueprint: "MW Clips"}), [[, , ],[, , ], [, , ]]); recipes.addShaped(.withTag({blueprint: "MW Ammo"}), [[, , ],[, , ], [, , ]]); + recipes.addShaped(.withTag({blueprint: "MW Grenades"}), [[, , ],[, , ], [, , ]]); //Transtructors recipes.addShaped(, [[, null, ],[, , ], [null, .withTag({Material: "copper"}).onlyWithTag({Material: "copper"}), null]]); recipes.addShaped(, [[, null, ],[, , ], [null, .withTag({Material: "cobalt"}).onlyWithTag({Material: "cobalt"}), null]]); @@ -452,6 +453,10 @@ for item in removedvanillagear { //MW Mags //Магазины из MW mods.immersiveengineering.Blueprint.addRecipe("MW Mags", , [*5,]); mods.immersiveengineering.Blueprint.addRecipe("MW Mags", , [*7,]); + //MW Grenades + mods.immersiveengineering.Blueprint.addRecipe("MW Grenades", , [*2,*9,,]); + mods.immersiveengineering.Blueprint.addRecipe("MW Grenades", , [,*2,,]); + mods.immersiveengineering.Blueprint.addRecipe("MW Grenades", , [,,,]); //TiC casting mods.tconstruct.Casting.addTableRecipe(, , , 100, true, 20); mods.tconstruct.Casting.addTableRecipe(, , , 72, false, 10);