Skip to content

Commit

Permalink
Tweak crook durability's
Browse files Browse the repository at this point in the history
Wood and stone are 33% bigger and bone is 20% bigger
  • Loading branch information
KnightMiner committed Jul 6, 2018
1 parent 8ff6825 commit 6ccd81a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -71,10 +71,10 @@ public void preInit(FMLPreInitializationEvent event) {
proxy.preInit();

if(Config.separateCrook) {
bone = EnumHelper.addToolMaterial(Util.prefix("bone"), 1, 250, 4.0F, 1.5F, 10);
bone = EnumHelper.addToolMaterial(Util.prefix("bone"), 1, 225, 4.0F, 1.5F, 10);
if(Config.netherCrooks) {
blaze = EnumHelper.addToolMaterial(Util.prefix("blaze"), 2, 400, 6.0F, 2.0F, 20);
wither = EnumHelper.addToolMaterial(Util.prefix("wither"), 2, 500, 6.0F, 1.5F, 10);
blaze = EnumHelper.addToolMaterial(Util.prefix("blaze"), 2, 300, 6.0F, 2.0F, 20);
wither = EnumHelper.addToolMaterial(Util.prefix("wither"), 2, 375, 6.0F, 1.5F, 10);
}
}
}
Expand Down
Expand Up @@ -21,7 +21,7 @@ public class ItemCrook extends ItemTool {
private static final Set<Block> EFFECTIVE_BLOCKS = Collections.emptySet();
public ItemCrook(ToolMaterial material) {
super(1.5F, -3.0F, material, EFFECTIVE_BLOCKS);
this.setMaxDamage((int)(material.getMaxUses() * 1.5));
this.setMaxDamage(material.getMaxUses() * 2);
this.setHarvestLevel("crook", material.getHarvestLevel());
}

Expand Down

0 comments on commit 6ccd81a

Please sign in to comment.