mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-28 00:28:27 +02:00
21 lines
357 B
TeX
21 lines
357 B
TeX
\section*{Infusions}
|
|
[% for inf in character.infusions %]
|
|
|
|
\subsection*{[[ inf.name ]]}
|
|
|
|
[% if inf.prerequisite %]%
|
|
|
|
\noindent
|
|
\textit{Prerequisite: [[ inf.prerequisite ]]}%
|
|
|
|
[% endif %]%
|
|
[% if inf.item %]%
|
|
|
|
\noindent
|
|
\textit{Item: [[ inf.item ]]}%
|
|
|
|
[% endif %]%
|
|
|
|
[[ inf.__doc__ | rst_to_latex(top_heading_level=2) ]]
|
|
|
|
[% endfor %] |