This what I am looking for
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1]
\definecolor{dgreen}{RGB}{0,100,0};
\definecolor{dred}{RGB}{215,0,0};
\definecolor{MainRed}{rgb}{.6, .1, .1}
\definecolor{GoldDecoration}{RGB}{170, 120, 70}
\begin{scope}[rotate=0]
\draw[left color=GoldDecoration] (-.1,0) to [bend right]
(.1,0)-- (.1,8) to [bend left] (-.1,8) -- cycle;
\draw[ball color=GoldDecoration] (0,8) circle (.2) ;
\begin{scope}
\draw [clip,rounded corners] (.1,7.6) to [out=60 ,in=180]
coordinate[pos=.95] (h1) (3,8) to [out=0, in = 200]
coordinate[pos=.5] (h2) (8,9) coordinate(h3) to [out=-85 ,in=85]
(7.5,4) coordinate(b3) to [out=220,in=0]
coordinate[pos=.85] (b2)(5,3) to [out=180,in=10]
coordinate[pos=.5] (b1)(.1,3) to [out =85,in=-80] (.1,7.6) ;
\fill[dgreen] (0,8.5) -- (4.35,8.35) to[out=-89,in=80]
(4.3,3) -- (0,3) --cycle;
\end{scope}
\draw[thick,MainRed] [rounded corners] (.1,7.6) to [out=60 ,in=180]
coordinate[pos=.95] (h1) (3,8) to[out=0, in = 200]
coordinate[pos=.5] (h2) (8,9) coordinate(h3) to [out=-85 ,in=85]
(7.5,4) coordinate(b3) to [out=220,in=0]
coordinate[pos=.85] (b2)(5,3) to [out=180,in=10]
coordinate[pos=.5] (b1)(.1,3) to[out =85,in=-80] (.1,7.6) ;
\begin{scope}[shift={(4.95,5.5)}]
\fill[dred] (50:0.9) arc (42.918:316:1.0125cm) -- (310:0.9) arc
(326:33:1.2375cm);
\fill[dred] (0:0.58905)--(36:0.225) -- (72:0.58905)--(108:0.225)--
(144:0.58905)--(180:0.225)--(216:0.58905)--(252:0.225)--
(288:0.58905)--(324:0.225)--cycle;
\end{scope}
\end{scope}
\end{tikzpicture}
\end{document}
