Added more recipe things
This commit is contained in:
parent
d66c2e8301
commit
b31806d004
2 changed files with 10 additions and 1 deletions
|
@ -639,6 +639,11 @@ public class ModRecipes {
|
||||||
'P', "plateCopper"
|
'P', "plateCopper"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.scrapBox),
|
||||||
|
"SSS", "SSS", "SSS",
|
||||||
|
'S', ItemParts.getPartByName("scrap")
|
||||||
|
);
|
||||||
|
|
||||||
Core.logHelper.info("Shapped Recipes Added");
|
Core.logHelper.info("Shapped Recipes Added");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@ import techreborn.items.ItemCells;
|
||||||
import techreborn.items.ItemIngots;
|
import techreborn.items.ItemIngots;
|
||||||
import techreborn.items.ItemParts;
|
import techreborn.items.ItemParts;
|
||||||
import techreborn.items.ItemPlates;
|
import techreborn.items.ItemPlates;
|
||||||
|
import techreborn.parts.ItemStandaloneCables;
|
||||||
|
|
||||||
import java.io.BufferedWriter;
|
import java.io.BufferedWriter;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -62,7 +63,10 @@ public class RecipeCompact implements IRecipeCompact {
|
||||||
recipes.put("hvTransformer", new ItemStack(ModBlocks.hvt));
|
recipes.put("hvTransformer", new ItemStack(ModBlocks.hvt));
|
||||||
recipes.put("windMill", new ItemStack(ModBlocks.windMill));
|
recipes.put("windMill", new ItemStack(ModBlocks.windMill));
|
||||||
recipes.put("energyCrystal", new ItemStack(ModItems.energyCrystal));
|
recipes.put("energyCrystal", new ItemStack(ModItems.energyCrystal));
|
||||||
// recipes.put("lapotronCrystal", new ItemStack(ModItems.lapotronCrystal));
|
recipes.put("lapotronCrystal", new ItemStack(ModItems.lapotronCrystal));
|
||||||
|
recipes.put("reinforcedGlass", new ItemStack(ModBlocks.reinforcedglass));
|
||||||
|
recipes.put("compressor", new ItemStack(ModBlocks.Compressor));
|
||||||
|
recipes.put("insulatedGoldCableItem", ItemStandaloneCables.getCableByName("insulatedgold"));
|
||||||
inited = false;
|
inited = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue