Rebalanced Reconstructor a bit

This commit is contained in:
Ellpeck 2015-12-09 17:58:20 +01:00
parent 99d0a413e9
commit 408d084ac5
2 changed files with 2 additions and 2 deletions

View file

@ -114,7 +114,7 @@ public class BlockCrafting{
if(ConfigCrafting.ATOMIC_RECONSTRUCTOR.isEnabled()){
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockAtomicReconstructor),
"IRI", "RCR", "IRI",
'R', "blockRedstone",
'R', "dustRedstone",
'I', "ingotIron",
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal())));
recipeAtomicReconstructor = Util.GetRecipes.lastIRecipe();

View file

@ -26,7 +26,7 @@ import net.minecraftforge.common.util.ForgeDirection;
public class TileEntityAtomicReconstructor extends TileEntityInventoryBase implements IEnergyReceiver{
public static final int ENERGY_USE = 200;
public static final int ENERGY_USE = 1000;
public EnergyStorage storage = new EnergyStorage(3000000);
private int currentTime;