Just for fun :-)

The code is heavily based on my answer to Help with the design of an eye in TikZ but changed the scale and colors, and added two new reflections.
As you see, the "reflection" technique here is to decrease opacity, and to distort the shapes. The skull is not distorted (this would be difficult), but since the shape to its left is interpreted by the brain as the reflection of a rectangular window, it conveys the information that the reflecting surface is non-flat (spherical ideed).
\documentclass{standalone}
\usepackage{tikz}
\usepackage{skull}
\usepackage{graphicx}
\usetikzlibrary{calc,decorations.pathmorphing}
\begin{document}
\def\eye#1{\scalebox{#1}{
\def\topedge{(-3,0) .. controls (-2,1.8) and (2,2) .. (2.3,.3)}
\def\bottomedge{(2.3,.3) .. controls (2,-2.2) and (-2,-1.2) .. (-3,0)}
\def\eyepath{\topedge -- \bottomedge --cycle;}
\begin{tikzpicture}
\clip\eyepath;
% Iris
\filldraw[color=blue!60!cyan!50!black] (-.2,.2) circle (1.4);
% Shadow on iris
\filldraw[color=blue!60!cyan!80!black] (-.3,-.1) circle (1.1);
% Iris lines
\foreach \a in {0,5,...,360}{
\pgfmathparse{25+38*rnd}
\fill[opacity=0.7, white!\pgfmathresult!blue, decoration={random steps, segment length=3pt, amplitude=1pt}, decorate, line width=1pt ] (-.2,.2) -- ++($(\a+2*rnd:.9+0.3*rnd)$) -- ++(\a+90:2pt) -- cycle;
}
% Pupil
\fill[color=black] (-.2,.2) circle (0.6);
% Window reflection
\fill[color=white, opacity=0.7, shift={(-.4,.4)}]
(220:0.65) -- (220:1.25) to[bend left=20] (170:1.15) -- (140:0.65) to[bend right=20] (220:0.65);
% Skull reflection
\begin{scope}
\clip (-.1,.4) circle(0.9); % Skull reflection
\node[opacity=0.4] at (-.2,-.1)
{\resizebox{20mm}{!}{\textcolor{white}{\Huge$\skull$}}};
\end{scope}
% Shadow of the eyelid
\draw[line width=8mm, draw opacity=0.1, line cap=round]\topedge;
% Eyelids
\draw[line width=4mm, red!40!white!80!black, line cap=round]\bottomedge;
\draw[line width=3mm, red!40!white!60!black, line cap=round]\topedge;
% Lacrimal
\fill[red!40!white!80!black] (-2.8,0) circle (.25);
\fill[white] (-2.7,.1) circle (.03);
\end{tikzpicture}
}}
\eye{1}
\end{document}