This commit is contained in:
2024-07-19 21:29:57 +02:00
parent 8918a5a020
commit 3c69fe9205
6 changed files with 68 additions and 2 deletions

View File

@@ -46,6 +46,7 @@
\definecolor{tablecolor1}{HTML}{b0beba}
\definecolor{tablecolor2}{HTML}{FFFFFF}
\definecolor{tablecolor3}{HTML}{384d3e}
\definecolor{bgblue}{HTML}{201040}
\definecolor{reset}{HTML}{ffffff}
\def\arraystretch{1.2}
@@ -521,7 +522,7 @@
\newcommand\charPart[2]{\noindent
\begin{tikzpicture}
\node[shape=chamfered rectangle, draw, fill=tablecolor3, text depth=-0.25em, text height=1.25em, inner sep=0pt,outer sep=0pt, minimum height=8mm, minimum width=20mm, thick, chamfered rectangle corners={north west, north east}, font=\tn\color{white}](label){\footnotesize\uppercase{#1}};
\node[shape=circle, thick, draw, above=-1em of label, fill=white]{\large\bfseries #2};
\node[shape=circle, thick, draw, above=-1em of label, fill=white]{\large\tn #2};
\end{tikzpicture}
}
@@ -532,3 +533,22 @@
\charPart{BRAWN}{#1}\charPart{AGILITY}{#2}\charPart{INTELLECT}{#3}\\\charPart{CUNNING}{#4}\charPart{WILLPOWER}{#5}\charPart{PRESENCE}{#6}%
\end{center}
\hfill\null}
\newcommand\Derived[2]{\noindent
\begin{tikzpicture}
\node[chamfered rectangle, draw, thick, inner sep=0mm, chamfered rectangle corners={north west, north east, south west, south east}] (named) {
\tikz\node[label={[chamfered rectangle, draw, thick, fill=bgblue, inner sep=0mm, chamfered rectangle corners={north west, north east, south west, south east}, font=\tiny\tn\color{white}, minimum height=4mm, minimum width=17mm]above: \uppercase{#1}}] (inner) {\large\tn #2};
};
\end{tikzpicture}
}
\newcommand\DerivedSplit[3]{\noindent
\begin{tikzpicture}
\draw[ultra thick] (0.88,-0.2) -- (0.88,-1.11);
\node[chamfered rectangle, draw, thick, inner sep=0mm, chamfered rectangle corners={north west, north east, south west, south east}] (named) {
\tikz\node[label={[chamfered rectangle, draw, thick, fill=bgblue, inner sep=0mm, chamfered rectangle corners={north west, north east, south west, south east}, font=\tiny\tn\color{white}, minimum height=4mm, minimum width=17mm]above:\uppercase{#1}}] (inner) {\large\tn #2\hspace{18pt}#3};
};
\end{tikzpicture}
}