Added base Ic2 ores
This commit is contained in:
parent
cad9b8cc56
commit
b505eeaf30
5 changed files with 7 additions and 5 deletions
|
@ -21,7 +21,7 @@ public class BlockOre extends Block {
|
|||
public static final String[] types = new String[]
|
||||
{
|
||||
"Galena", "Iridium", "Ruby", "Sapphire", "Bauxite", "Pyrite", "Cinnabar", "Sphalerite",
|
||||
"Tungston", "Sheldonite", "Olivine", "Sodalite"
|
||||
"Tungston", "Sheldonite", "Olivine", "Sodalite", "Copper", "Tin", "Lead", "Silver"
|
||||
};
|
||||
|
||||
private IIcon[] textures;
|
||||
|
|
|
@ -33,8 +33,6 @@ public class GuiHandler implements IGuiHandler {
|
|||
} else if (ID == blastFurnaceID) {
|
||||
return new ContainerBlastFurnace((TileBlastFurnace) world.getTileEntity(x, y, z), player);
|
||||
}
|
||||
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ public class ConfigTechReborn {
|
|||
public static int GravityCharge;
|
||||
public static int CentrifugeCharge;
|
||||
public static int ThermalGeneratorCharge;
|
||||
//Teir
|
||||
//Tier
|
||||
public static int AdvancedDrillTier;
|
||||
public static int LapotronPackTier;
|
||||
public static int LithiumBatpackTier;
|
||||
|
|
|
@ -24,7 +24,6 @@ public class ItemAdvancedDrill extends ItemPickaxe implements IElectricItem {
|
|||
|
||||
public static final int maxCharge = ConfigTechReborn.AdvancedDrillCharge;
|
||||
public int cost = 250;
|
||||
;
|
||||
public static final int tier = ConfigTechReborn.AdvancedDrillTier;
|
||||
public double transferLimit = 100;
|
||||
|
||||
|
|
|
@ -23,6 +23,11 @@ tile.techreborn.ore.Tungston.name=Tungston Ore
|
|||
tile.techreborn.ore.Sheldonite.name=Sheldonite Ore
|
||||
tile.techreborn.ore.Olivine.name=Olivine Ore
|
||||
tile.techreborn.ore.Sodalite.name=Sodalite Ore
|
||||
tile.techreborn.ore.Copper.name=Copper Ore
|
||||
tile.techreborn.ore.Tin.name=Tin Ore
|
||||
tile.techreborn.ore.Lead.name=Lead Ore
|
||||
tile.techreborn.ore.Silver.name=Silver Ore
|
||||
|
||||
|
||||
#Storage
|
||||
tile.techreborn.storage.Silver.name=Block of Silver
|
||||
|
|
Loading…
Add table
Reference in a new issue