Most of the Vacuum Freezer(Not working just yet)

This commit is contained in:
Modmuss50 2015-11-17 21:48:06 +00:00
parent 219f2a0df7
commit 3114576e7b
13 changed files with 495 additions and 0 deletions

View file

@ -203,6 +203,7 @@ public class ModBlocks {
VacuumFreezer = new BlockVacuumFreezer(Material.rock);
GameRegistry.registerBlock(VacuumFreezer, "vacuumfreezer");
GameRegistry.registerTileEntity(TileVacuumFreezer.class, "TileVacuumFreezerTR");
PlasmaGenerator = new BlockPlasmaGenerator(Material.rock);
GameRegistry.registerBlock(PlasmaGenerator, "plasmagenerator");

View file

@ -331,6 +331,9 @@ public class
'N', "ingotCupronickel",
'C', "ingotCopper");
RecipeHandler.addRecipe(new VacuumFreezerRecipe(ItemIngots.getIngotByName("hotTungstensteel"), ItemIngots.getIngotByName("tungstensteel"), 440, 128));
RecipeHandler.addRecipe(new VacuumFreezerRecipe(ItemCells.getCellByName("water"), ItemCells.getCellByName("cell"), 60, 128));
}
static void addSmeltingRecipes() {