Fix alloy plate name, MFU and MFSU I\O rates (#1249)
* Fixed name for advanced alloy plate * Fix rates and storage amount for MFE and MFSU. Closes #1205
This commit is contained in:
parent
e19e483d2f
commit
44524a680b
3 changed files with 11 additions and 3 deletions
|
@ -33,11 +33,15 @@ import techreborn.init.ModBlocks;
|
|||
|
||||
/**
|
||||
* Created by modmuss50 on 14/03/2016.
|
||||
*
|
||||
*/
|
||||
public class TileHighVoltageSU extends TileEnergyStorage implements IContainerProvider {
|
||||
|
||||
/**
|
||||
* MFSU should store 16M FE with 2048 FE/t I/O
|
||||
*/
|
||||
public TileHighVoltageSU() {
|
||||
super("HIGH_VOLTAGE_SU", 2, ModBlocks.HIGH_VOLTAGE_SU, EnumPowerTier.HIGH, 2048, 2048, 1000000);
|
||||
super("HIGH_VOLTAGE_SU", 2, ModBlocks.HIGH_VOLTAGE_SU, EnumPowerTier.HIGH, 512, 512, 4000000);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -33,11 +33,15 @@ import techreborn.init.ModBlocks;
|
|||
|
||||
/**
|
||||
* Created by modmuss50 on 14/03/2016.
|
||||
*
|
||||
*/
|
||||
public class TileMediumVoltageSU extends TileEnergyStorage implements IContainerProvider {
|
||||
|
||||
/**
|
||||
* MFE should store 1.2M FE with 512 FE/t I/O
|
||||
*/
|
||||
public TileMediumVoltageSU() {
|
||||
super("MEDIUM_VOLTAGE_SU", 2, ModBlocks.MEDIUM_VOLTAGE_SU, EnumPowerTier.MEDIUM, 512, 512, 600000);
|
||||
super("MEDIUM_VOLTAGE_SU", 2, ModBlocks.MEDIUM_VOLTAGE_SU, EnumPowerTier.MEDIUM, 128, 128, 300000);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -477,7 +477,7 @@ item.techreborn.plate.yellow_garnet.name=Yellow Garnet Plate
|
|||
item.techreborn.plate.zinc.name=Zinc Plate
|
||||
item.techreborn.plate.refined_iron.name=Refined Iron Plate
|
||||
item.techreborn.plate.wood.name=Wooden Plate
|
||||
item.techreborn.plate.advanced_alloy.name=Advanced Alloy
|
||||
item.techreborn.plate.advanced_alloy.name=Advanced Alloy Plate
|
||||
item.techreborn.plate.lazurite.name=Lazurite Plate
|
||||
|
||||
#Parts
|
||||
|
|
Loading…
Reference in a new issue