Recipe for wireless transmitter

This commit is contained in:
Raoul Van den Berge
2016-04-12 18:25:36 +02:00
parent 64b7ae9509
commit 7194cb1743

View File

@@ -185,6 +185,17 @@ public class CommonProxy {
'R', new ItemStack(Items.redstone) 'R', new ItemStack(Items.redstone)
); );
// Wireless Transmitter
GameRegistry.addRecipe(new ItemStack(RefinedStorageBlocks.WIRELESS_TRANSMITTER),
"EPE",
"EME",
"EAE",
'E', new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON),
'A', new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED),
'P', new ItemStack(Items.ender_pearl),
'M', new ItemStack(RefinedStorageBlocks.MACHINE_CASING)
);
// Grid // Grid
GameRegistry.addRecipe(new ItemStack(RefinedStorageBlocks.GRID, 1, EnumGridType.NORMAL.getId()), GameRegistry.addRecipe(new ItemStack(RefinedStorageBlocks.GRID, 1, EnumGridType.NORMAL.getId()),
"ECE", "ECE",