Skip to content

Commit

Permalink
change resistence from Reinforced Blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream-Master committed Jan 13, 2019
1 parent 97e4ce7 commit 738b509
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class NaquadahPlatedReinforcedStoneProperties implements IExtendedBlockPr
public int getOpacity() { return 100; }

@Override
public float getHardness() { return 300.0F; }
public float getHardness() { return 1666.7F; }

@Override
public float getLightLevel() { return 0; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ public class NeutroniumPlatedReinforcedStoneProperties implements IExtendedBlock
public int getOpacity() { return 100; }

@Override
public float getHardness() { return 500.0F; }
public float getHardness() { return 750.0F; }

@Override
public float getLightLevel() { return 0; }

@Override
public float getResistance() { return 1000F; }
public float getResistance() { return 4166.7F; }

@Override
public String getBlockName() { return "NeutroniumPlatedReinforcedStone"; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class SteelPlatedReinforcedStoneProperties implements IExtendedBlockPrope
public float getLightLevel() { return 0; }

@Override
public float getResistance() { return 350.0F; }
public float getResistance() { return 333.4F; }

@Override
public String getBlockName() { return "SteelPlatedReinforcedStone"; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class TitaniumPlatedReinforcedStoneProperties implements IExtendedBlockPr
public float getLightLevel() { return 0; }

@Override
public float getResistance() { return 400.0F; }
public float getResistance() { return 500.0F; }

@Override
public String getBlockName() { return "TitaniumPlatedReinforcedStone"; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class TungstensteelPlatedReinforcedStoneProperties implements IExtendedBl
public float getLightLevel() { return 0; }

@Override
public float getResistance() { return 667.6F; }
public float getResistance() { return 666.7F; }

@Override
public String getBlockName() { return "TungstensteelPlatedReinforcedStone"; }
Expand Down

0 comments on commit 738b509

Please sign in to comment.