Using circuitikz I am trying to get an americaninductor with a line next to it representing a core. Or said differently, I want something like a cute choke but with the coil looking like an americaninductor (semi-circles). Something like the second inductor (FeSi Core inductor) 
Is this possible? My code is as follows:
\documentclass{article}
\usepackage[europeanresistors,americaninductors]{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,-2)node[left] {} to [short,o-] (0,0)
to [short,-*] (1,0);
\draw thick-- +(30:0.89);
\draw (1.9,0) toshort,-
to resistor
to lamp
to short,-*
to (0,-5)
to [short,-o] (0,-3);
\draw (3,0) to (5,0)
to [L] (5,-3)
to lamp
to (5,-5)
to (3,-5);
\end{circuitikz}
\end{document}



