mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-07 13:15:53 +02:00
Added more stats to the party summary in the GM sheet.
This commit is contained in:
@@ -1,11 +1,10 @@
|
|||||||
\section*{Party}
|
\section*{Party}
|
||||||
|
|
||||||
[% if use_dnd_decorations %]
|
[% if use_dnd_decorations %]
|
||||||
\begin{DndTable}{r c c c c c c c c}
|
\begin{DndTable}{r c c c c c c c}
|
||||||
& AC & Str & Dex & Con & Int & Wis & Cha \\
|
& Str & Dex & Con & Int & Wis & Cha \\
|
||||||
[% for member in party %]
|
[% for member in party %]
|
||||||
[[ member.name[:14] ]]
|
[[ member.name[:18] ]]
|
||||||
& [[ member.armor_class ]]
|
|
||||||
& [[ member.strength.modifier | mod_str ]]
|
& [[ member.strength.modifier | mod_str ]]
|
||||||
& [[ member.dexterity.modifier | mod_str ]]
|
& [[ member.dexterity.modifier | mod_str ]]
|
||||||
& [[ member.constitution.modifier | mod_str ]]
|
& [[ member.constitution.modifier | mod_str ]]
|
||||||
@@ -15,13 +14,24 @@
|
|||||||
\\
|
\\
|
||||||
[% endfor %]
|
[% endfor %]
|
||||||
\end{DndTable}
|
\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 %]
|
[% else %]
|
||||||
\begin{tabular}{r | c c c c c c c}
|
\begin{tabular}{r | c c c c c c}
|
||||||
& AC & Str & Dex & Con & Int & Wis & Cha \\
|
& Str & Dex & Con & Int & Wis & Cha \\
|
||||||
\hline\hline
|
\hline\hline
|
||||||
[% for member in party %]
|
[% for member in party %]
|
||||||
[[ member.name[:10] ]]
|
[[ member.name[:10] ]]
|
||||||
& [[ member.armor_class ]]
|
|
||||||
& [[ member.strength.modifier | mod_str ]]
|
& [[ member.strength.modifier | mod_str ]]
|
||||||
& [[ member.dexterity.modifier | mod_str ]]
|
& [[ member.dexterity.modifier | mod_str ]]
|
||||||
& [[ member.constitution.modifier | mod_str ]]
|
& [[ member.constitution.modifier | mod_str ]]
|
||||||
@@ -30,5 +40,18 @@
|
|||||||
& [[ member.charisma.modifier | mod_str ]]
|
& [[ member.charisma.modifier | mod_str ]]
|
||||||
\\
|
\\
|
||||||
[% endfor %]
|
[% endfor %]
|
||||||
\end{tabular}
|
\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 %]
|
[% endif %]
|
||||||
|
|||||||
Reference in New Issue
Block a user