Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
 - tune mining level of some tools
  • Loading branch information
karakufire committed Oct 12, 2021
1 parent e22711a commit 3fda5a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
mc_version=1.12.2
hacmat4tic_ver=1.10
hacmat4tic_ver=1.11
jei_version=4.16.1.302
mantle_build=1.3.3.55
tic_build=2.13.0.183
2 changes: 1 addition & 1 deletion src/main/java/krk/hacmat4tic/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class Main {
public static final String MOD_ID = "hacmat4tic";
public static final String MOD_NAME = "HaCMaterial4TiC";
public static final String MOD_VERSION = "1.10";
public static final String MOD_VERSION = "1.11";
public static final String DEPENDENCIES
= "required-after:tconstruct;"
+ "required-after:dcs_climate;";
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/krk/hacmat4tic/materials/HaCMaterial.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class HaCMaterial {
public static void registerMaterial() {
TinkerRegistry.addMaterial(CHALCEDONY);
TinkerRegistry.addMaterialStats(CHALCEDONY,
new HeadMaterialStats(36, 10.0f, 10f, HarvestLevels.OBSIDIAN),
new HeadMaterialStats(36, 10.0f, 10f, HarvestLevels.COBALT),
new HandleMaterialStats(1.0f, 24),
new ExtraMaterialStats(12));
TinkerRegistry.addMaterialStats(NICKEL_SILVER,
Expand All @@ -57,12 +57,12 @@ public static void registerMaterial() {
new ExtraMaterialStats(311),
new BowMaterialStats(0.6f, 2.5f, 5.5f));
TinkerRegistry.addMaterialStats(TOOL_STEEL,
new HeadMaterialStats(600, 9.5f, 20f, 6),
new HeadMaterialStats(600, 9.5f, 20f, 5),
new HandleMaterialStats(1.7f, 450),
new ExtraMaterialStats(310),
new BowMaterialStats(1.0f, 3.5f, 4.9f));
TinkerRegistry.addMaterialStats(MANGALLOY,
new HeadMaterialStats(600, 3.8f, 17.8f, 7),
new HeadMaterialStats(600, 3.8f, 17.8f, 5),
new HandleMaterialStats(1.6f, 400),
new ExtraMaterialStats(221),
new BowMaterialStats(0.3f, 1.1f, -0.8f));
Expand Down

0 comments on commit 3fda5a3

Please sign in to comment.