mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
44 lines
944 B
TeX
44 lines
944 B
TeX
\section*{Subclasses}
|
|
|
|
[% for sc in character.subclasses if sc not in ['', None, 'None', 'none']%]
|
|
|
|
\subsection*{Subclass: [[ sc.name ]]}
|
|
|
|
[[ sc.__doc__ | rst_to_latex(top_heading_level=2) ]]
|
|
|
|
[% endfor %]
|
|
|
|
\section*{Features}
|
|
|
|
[% for feat in character.features %]
|
|
|
|
\subsection*{[[ feat.name ]]}
|
|
|
|
\noindent
|
|
\textbf{Source:} [[ feat.source ]] \\
|
|
|
|
[% if feat.needs_implementation %] %
|
|
\textbf{**Not included in stats on Character Sheet} %
|
|
[% endif %] %
|
|
|
|
[[ feat.__doc__|rst_to_latex ]]
|
|
|
|
[% endfor %]
|
|
|
|
\section*{Magic Items}
|
|
|
|
[% for mitem in character.magic_items %]
|
|
|
|
\subsection*{[[ mitem.name ]]}
|
|
|
|
\noindent
|
|
\textbf{Requires Attunement:} [[ mitem.requires_attunement ]] \\
|
|
\textbf{Rarity:} [[ mitem.rarity ]] \\
|
|
|
|
[% if mitem.needs_implementation %] %
|
|
\textbf{**Not included in stats on Character Sheet} %
|
|
[% endif %] %
|
|
|
|
[[ mitem.__doc__|rst_to_latex ]]
|
|
|
|
[% endfor %] |