You can use the mindmap library; a little example:
\documentclass{book}
\usepackage{tikz}
\usetikzlibrary{calc,shapes,mindmap}
\newcommand\MyAnn[4]{%
\node [annotation,below] (#1) at (#2.south) {\textbf{ \{#3\}}\\#4};
}
\begin{document}
\tikzset{concept color=red!50,%
every annotation/.style={text width=4cm,text badly centered,font=\large}}
\begin{tikzpicture}[mindmap]
\node [concept] (vodka) {WN.Pr}
child[grow=left] {node[concept] (caipi) {WN.Br}};
\MyAnn{fn}{vodka}{vodka}{text text text text.};
\MyAnn{sn}{caipi}{caipirosca}{text text text text.};
\end{tikzpicture}
\begin{tikzpicture}
\begin{scope}[every node/.append style={minimum size=3.5cm,font=\large},mindmap]
\node [concept] (chek) {WN.Br}
child[grow=right] {node[concept] (xeque) {WN.Pr}};
\MyAnn{fn}{chek}{chekmate}{text text text text.};
\MyAnn{sn}{xeque}{xeque-mate}{text text text text.};
\end{scope}
\node [style=double arrow,draw,fill=black,scale=0.5] at ($(fn)+(2.4,0.25)$) {dblarrow};
\end{tikzpicture}
\end{document}
EDIT: I've changed the code to include the second example.
