Added party stats for the GM notes sheet.

This commit is contained in:
Mark Wolfman
2021-06-06 23:07:04 -05:00
parent 3d8b9987db
commit 62f6876f69
5 changed files with 91 additions and 19 deletions
@@ -0,0 +1,34 @@
\section*{Party}
[% if use_dnd_decorations %]
\begin{DndTable}[header=Nice Table]{l c c c c c c c c}
& AC & Str & Dex & Con & Int & Wis & Cha \\
[% for member in party %]
[[ member.name[:14] ]]
& [[ member.armor_class ]]
& [[ member.strength.modifier | mod_str ]]
& [[ member.dexterity.modifier | mod_str ]]
& [[ member.constitution.modifier | mod_str ]]
& [[ member.intelligence.modifier | mod_str ]]
& [[ member.wisdom.modifier | mod_str ]]
& [[ member.charisma.modifier | mod_str ]]
\\
[% endfor %]
\end{DndTable}
[% else %]
\begin{tabular}{l | c c c c c c c}
& AC & Str & Dex & Con & Int & Wis & Cha \\
\hline\hline
[% for member in party %]
[[ member.name[:10] ]]
& [[ member.armor_class ]]
& [[ member.strength.modifier | mod_str ]]
& [[ member.dexterity.modifier | mod_str ]]
& [[ member.constitution.modifier | mod_str ]]
& [[ member.intelligence.modifier | mod_str ]]
& [[ member.wisdom.modifier | mod_str ]]
& [[ member.charisma.modifier | mod_str ]]
\\
[% endfor %]
\end{tabular}
[% endif %]