8 sept. 2015, 17:32

Alors avec se code:

public class PickaxeRed extends ItemPickaxe {

    protected PickaxeRed(ToolMaterial p_i45347_1_) {
super(p_i45347_1_);
// TODO Auto-generated constructor stub
}

private Block[] blocksEffectiveAgainst = new Block[]
            {
                Blocks.redstone_ore, 
        };

        int harvest = 1;

protected float efficiencyOnProperMaterial;

public float func_150893_a(ItemStack stack, Block block)
{
   return block == Blocks.redstone_ore || block == Blocks.lit_redstone_ore ? this.efficiencyOnProperMaterial : 1.0F;
}

@Override
public float getDigSpeed(ItemStack stack, Block block, int meta)
{
   return func_150893_a(stack, block);
}

public boolean func_150897_b(Block block)
{
    return block == Blocks.redstone_ore || block == Blocks.lit_redstone_ore;
}

}

La je peu casser tout sauf le minerais de redstone.