Added more stats to the party summary in the GM sheet.

This commit is contained in:
Mark Wolfman
2021-06-11 23:43:41 -05:00
parent 7d564ac1e1
commit 1ab946d5c3
+30 -7
View File
@@ -1,11 +1,10 @@
\section*{Party}
[% if use_dnd_decorations %]
\begin{DndTable}{r c c c c c c c c}
& AC & Str & Dex & Con & Int & Wis & Cha \\
\begin{DndTable}{r c c c c c c c}
& Str & Dex & Con & Int & Wis & Cha \\
[% for member in party %]
[[ member.name[:14] ]]
& [[ member.armor_class ]]
[[ member.name[:18] ]]
& [[ member.strength.modifier | mod_str ]]
& [[ member.dexterity.modifier | mod_str ]]
& [[ member.constitution.modifier | mod_str ]]
@@ -15,13 +14,24 @@
\\
[% endfor %]
\end{DndTable}
\begin{DndTable}{r c c c}
& AC & Pas.\ Per. & Spl.\ DC \\
[% for member in party %]
[[ member.name[:28] ]]
& [[ member.armor_class ]]
& [[ member.perception + 10 ]]
& [% for class in member.class_list %]
[% if class.spellcasting_ability %] [[ member.spell_save_dc(class) ]], [% endif %]
[% endfor %]
\\
[% endfor %]
\end{DndTable}
[% else %]
\begin{tabular}{r | c c c c c c c}
& AC & Str & Dex & Con & Int & Wis & Cha \\
\begin{tabular}{r | c c c c c c}
& 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 ]]
@@ -31,4 +41,17 @@
\\
[% endfor %]
\end{tabular}
\begin{tabular}{r | c c c}
& AC & Pas.\ Per. & Spl.\ DC \\
\hline\hline
[% for member in party %]
[[ member.name[:28] ]]
& [[ member.armor_class ]]
& [[ member.perception + 10 ]]
& [% for class in member.class_list %]
[% if class.spellcasting_ability %] [[ member.spell_save_dc(class) ]], [% endif %]
[% endfor %]
\\
[% endfor %]
\end{tabular}
[% endif %]