package tech.nevets.vplus.tools; import net.minecraft.item.AxeItem; import net.minecraft.item.ToolMaterial; import tech.nevets.vplus.items.VPItemGroups; public class AxeBase extends AxeItem { public AxeBase(ToolMaterial toolMaterial_1) { super(toolMaterial_1, 5, -3.0f, new Settings().group(VPItemGroups.TOOLS)); } }