I am asking myself if I can create a picture like the one presented hereunder with TikZ:
Edit: This is what I have tried so far. I really want to include brackets as in the original tree shown above.
\begin{document}
\begin{tikzpicture}
[
grow = right,
sibling distance = 6em,
level distance = 10em,
edge from parent/.style = {draw, -latex},
every node/.style = {font=\footnotesize},
sloped
]
\node [root] {$\textbf{x}$: \textbf{status quo}}
child { node [env] {\color{red}{$\textbf{x}$ \textbf{is}}\\ \color{red}{\textbf{chosen}}}
edge from parent node [below] {\textbf{No objection}} }
child { node [dummy] {\textbf{\color{blue}{Option y}}}
child { node [dummy] {\color{red}{$\textbf{S}$' \textbf{actions}}: \\\color{blue}{\textbf{withdraws}} or\\\color{blue}{ \textbf{maintains}}}
child { node [env] {\textbf{\color{blue}{Option y}}}
child { node [env] {\color{red}{$\textbf{z}$ \textbf{is chosen}}}
edge from parent node [above] {\textbf{counterob.}}
node [below] {\textbf{by} $\textbf{T}$} }
child { node [env] {\color{red}{$\textbf{y}$ \textbf{chosen}}}
edge from parent node [above] {\textbf{No counter-}}
node [below] {\textbf{objection}} }
edge from parent node [below] {\textbf{Maintains}} }
child { node [env] {\color{red}{$\textbf{x}$ \textbf{is}} \\ \color{red}{\textbf{chosen}}}
edge from parent node [above] {\textbf{Withdraws}} }
edge from parent node [below] {\textbf{oppose} \textbf{y}} }
child { node [env] {\color{red}{\textbf{y} \textbf{is chosen}}}
edge from parent node [above, align=center]
{\textbf{No}\\ \textbf{opposition}\\\textbf{against} \textbf{y}}}
edge from parent node [above] {$\textbf{S}$ \textbf{Objects}} };
\end{tikzpicture}
\end{document}


