mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 12:33:27 +02:00
31 lines
1.1 KiB
TeX
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 %]
|