Files
dungeon-sheets/dungeonsheets/forms/magic_items_template.tex
T
2021-07-01 22:29:42 -05:00

31 lines
1.1 KiB
TeX

\pdfbookmark[0]{Magic Items}{Magic Items}
\section*{Magic Items}
[% if use_dnd_decorations %]
[% for mitem in character.magic_items %]
\pdfbookmark[1]{[[ mitem.name ]]}{Magic Items - [[ mitem.name ]]}
\DndItemHeader{[[ mitem.name ]]}{[% if mitem.item_type %][[ mitem.item_type ]], [[ mitem.rarity.lower() ]][% else %][[ mitem.rarity ]] item[% endif %][% if mitem.requires_attunement %] (requires attunement)[% endif %]}
[% if mitem.needs_implementation %] %
\textbf{**Not included in stats on Character Sheet} %
[% endif %] %
[[ mitem.__doc__|rst_to_latex ]]
[% endfor %]
[% else %]
[% for mitem in character.magic_items %]
\pdfbookmark[1]{[[ mitem.name ]]}{Magic Items - [[ mitem.name ]]}
\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 %]
[% endif %]