mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-23 22:28:28 +02:00
23 lines
544 B
TeX
23 lines
544 B
TeX
\section*{Features}
|
|
[% if use_dnd_decorations %]
|
|
[% for feat in character.features %]
|
|
\DndFeatHeader{[[ feat.name ]]}[Source: [[ feat.source ]]]
|
|
|
|
[[ feat.__doc__|rst_to_latex ]]
|
|
[% endfor %]
|
|
[% else %]
|
|
[% 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 %]
|
|
[% endif %] |