package org.betterx.betterend.blocks; import org.betterx.bclib.blocks.BaseBlock; import org.betterx.bclib.interfaces.tools.AddMineableAxe; import net.minecraft.world.level.block.SoundType; import net.minecraft.world.level.material.Material; import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; public class AmaranitaCapBlock extends BaseBlock implements AddMineableAxe { public AmaranitaCapBlock() { super(FabricBlockSettings.of(Material.WOOD).sound(SoundType.WOOD)); } }