Reduce Plascrete Mininglevel and hardness/resistance
This commit is contained in:
parent
714f3c19fa
commit
5a7e797883
1 changed files with 4 additions and 3 deletions
|
@ -57,7 +57,7 @@ public class GT_Block_Reinforced extends GT_Generic_Block {
|
||||||
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".7.name", "Magic Solid Super Fuel");
|
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".7.name", "Magic Solid Super Fuel");
|
||||||
ItemList.Block_BronzePlate.set(new ItemStack(this.setHardness(60.0f).setResistance(150.0f), 1, 0));
|
ItemList.Block_BronzePlate.set(new ItemStack(this.setHardness(60.0f).setResistance(150.0f), 1, 0));
|
||||||
ItemList.Block_IridiumTungstensteel.set(new ItemStack(this.setHardness(200.0f).setResistance(600.0f), 1, 1));
|
ItemList.Block_IridiumTungstensteel.set(new ItemStack(this.setHardness(200.0f).setResistance(600.0f), 1, 1));
|
||||||
ItemList.Block_Plascrete.set(new ItemStack(this.setHardness(80.0f).setResistance(350.0f), 1, 2));
|
ItemList.Block_Plascrete.set(new ItemStack(this.setHardness(40.0f).setResistance(100.0f), 1, 2));
|
||||||
ItemList.Block_TungstenSteelReinforced.set(new ItemStack(this.setHardness(100.0f).setResistance(400.0f), 1, 3));
|
ItemList.Block_TungstenSteelReinforced.set(new ItemStack(this.setHardness(100.0f).setResistance(400.0f), 1, 3));
|
||||||
ItemList.Block_BrittleCharcoal.set(new ItemStack(this.setHardness(0.5f).setResistance(8.0f), 1, 4));
|
ItemList.Block_BrittleCharcoal.set(new ItemStack(this.setHardness(0.5f).setResistance(8.0f), 1, 4));
|
||||||
ItemList.Block_Powderbarrel.set(new ItemStack(this.setHardness(2.5f).setResistance(2.0f), 1, 5));
|
ItemList.Block_Powderbarrel.set(new ItemStack(this.setHardness(2.5f).setResistance(2.0f), 1, 5));
|
||||||
|
@ -79,6 +79,7 @@ public class GT_Block_Reinforced extends GT_Generic_Block {
|
||||||
|
|
||||||
public int getHarvestLevel(int aMeta) {
|
public int getHarvestLevel(int aMeta) {
|
||||||
if (aMeta == 4||aMeta == 5 || aMeta == 6 || aMeta == 7) return 1;
|
if (aMeta == 4||aMeta == 5 || aMeta == 6 || aMeta == 7) return 1;
|
||||||
|
if (aMeta == 2) return 2;
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,7 +122,7 @@ public class GT_Block_Reinforced extends GT_Generic_Block {
|
||||||
return 200.0F;
|
return 200.0F;
|
||||||
}
|
}
|
||||||
if (tMeta == 2) {
|
if (tMeta == 2) {
|
||||||
return 80.0F;
|
return 40.0F;
|
||||||
}
|
}
|
||||||
if (tMeta == 3) {
|
if (tMeta == 3) {
|
||||||
return 100.0F;
|
return 100.0F;
|
||||||
|
@ -144,7 +145,7 @@ public class GT_Block_Reinforced extends GT_Generic_Block {
|
||||||
return 600.0F;
|
return 600.0F;
|
||||||
}
|
}
|
||||||
if (tMeta == 2) {
|
if (tMeta == 2) {
|
||||||
return 350.0F;
|
return 100.0F;
|
||||||
}
|
}
|
||||||
if (tMeta == 3) {
|
if (tMeta == 3) {
|
||||||
return 400.0F;
|
return 400.0F;
|
||||||
|
|
Loading…
Reference in a new issue