Changed tool field names to match armor field names
This commit is contained in:
parent
be2ef933ed
commit
6b84b38eaa
1 changed files with 6 additions and 6 deletions
|
@ -7,18 +7,18 @@ import mmm.MmmMaterials;
|
|||
|
||||
public class TTTools
|
||||
{
|
||||
public final TTToolSet COPPER_TOOLS;
|
||||
public final TTToolSet BRONZE_TOOLS;
|
||||
public final TTToolSet STEEL_TOOLS;
|
||||
public final TTToolSet COPPER;
|
||||
public final TTToolSet BRONZE;
|
||||
public final TTToolSet STEEL;
|
||||
|
||||
|
||||
public TTTools( )
|
||||
{
|
||||
this.COPPER_TOOLS = new TTToolSet( "copper" , MmmMaterials.METAL.COPPER.INGOT , //
|
||||
this.COPPER = new TTToolSet( "copper" , MmmMaterials.METAL.COPPER.INGOT , //
|
||||
2 , 192 , 5.0f , 1.5f , 16 , 7 , -3 );
|
||||
this.BRONZE_TOOLS = new TTToolSet( "bronze" , MmmMaterials.ALLOY.BRONZE.INGOT , //
|
||||
this.BRONZE = new TTToolSet( "bronze" , MmmMaterials.ALLOY.BRONZE.INGOT , //
|
||||
2 , 212 , 5.5f , 1.75f , 20 , 7.5f , -3.1f );
|
||||
this.STEEL_TOOLS = new TTToolSet( "steel" , MmmMaterials.ALLOY.STEEL.INGOT , //
|
||||
this.STEEL = new TTToolSet( "steel" , MmmMaterials.ALLOY.STEEL.INGOT , //
|
||||
3 , 800 , 7f , 2.5f , 12 , 8.0f , -3f );
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue