Given a set of coordinates (A1), (A2), ... (A<n>), we can draw the polygon through them via
\draw plot[samples at={1,...,<n>}] (A\x) -- cycle;
which is only slightly longer than the tkz-euclide syntax.
Since there is no MWE, I had to create some nodes.
\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}
\path foreach \X in {1,...,13} {(360*\X/14:2+rnd) coordinate (A\X)};
\draw plot[samples at={1,...,13}] (A\x) -- cycle;
\end{tikzpicture}
\end{document}

One can, of course, also change the plot handler, e.g.
\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}
\path foreach \X in {1,...,13} {(360*\X/14:2+rnd) coordinate (A\X)};
\draw plot[smooth cycle,samples at={1,...,13}] (A\x);
\end{tikzpicture}
\end{document}

As usual, you can define styles for this. Here is a style polygon through which produces the above polygon with
\draw[polygon through={A1,A...,A13}];
One can then use several of those in a path, e.g.
\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}[polygon through/.style={insert path={
plot[samples at={#1}] (\x) -- cycle}}]
\path foreach \X in {1,...,13} {(360*\X/14:3+rnd) coordinate (A\X)
(360*\X/14:1.5+rnd) coordinate (B\X)};
\fill[even odd rule,blue,
polygon through={A1,A...,A13},polygon through={B1,B...,B13}];
\end{tikzpicture}
\end{document}

\draw plot[samples at={1,...,13}] (A\x);or\draw plot[samples at={1,...,13}] (A\x) -- cycle;. – Apr 28 '20 at 17:22