From 33124265d37c918494c89a091b418789c4d0fc11 Mon Sep 17 00:00:00 2001
From: Malin Freeborn <malinfreeborn@posteo.net>
Date: Tue, 7 Nov 2023 21:49:42 +0100
Subject: [PATCH] split \dmg command into atomic parts

---
 stats.sty | 38 +++++++++++++++++---------------------
 1 file changed, 17 insertions(+), 21 deletions(-)

diff --git a/stats.sty b/stats.sty
index 8686eda1..35f1f99b 100644
--- a/stats.sty
+++ b/stats.sty
@@ -60,31 +60,28 @@
 \newcommand{\equipment}{}
 \newcommand{\mods}{}
 
+\newcommand\absNum[1]{\ifnum\value{#1}>0+\fi\ifnum\value{#1}=0\else\arabic{#1}\fi}
 
 % we calculate damage here because we can't display 1d6+6 damage - it has to turn into 2d6+2 damage.
-\newcommand{\dmg}[1]{%
-  \ifnum\value{#1}<1 0\else%
-    \setcounter{damagebonus}{\value{#1}}%
-    \setcounter{numberofdice}{1}%
+
+\newcommand\conDmg[1]{%
+  \setcounter{numberofdice}{1}%
+  \setcounter{damagebonus}{\value{#1}}%
+  \addtocounter{damagebonus}{-4}%
+  \whileboolexpr{%
+    test {\ifnumcomp{\value{damagebonus}}{>}{3}}%
+  }{%
     \addtocounter{damagebonus}{-4}%
-    \whileboolexpr{%
-      test {\ifnumcomp{\value{damagebonus}}{>}{3}}%
-    }{%
-      \addtocounter{damagebonus}{-4}%
-      \addtocounter{numberofdice}{1}%
-    }%
-    {\arabic{numberofdice}D6%
-    \ifnumcomp{\value{damagebonus}}{>}{0}%
-      {+\arabic{damagebonus}}%
-      {%
-      \ifnumcomp{\value{damagebonus}}{<}{0}{%
-        \arabic{damagebonus}%
-      }{}%
-      }%
-    }%
-  \fi%
+    \addtocounter{numberofdice}{1}%
+  }%
+}
+
+\newcommand\showDam{%
+  \arabic{numberofdice}D6\absNum{damagebonus}%
 }
 
+\newcommand\dmg[1]{\conDmg{#1}\showDam}
+
 \newcommand\showBoxes{
   \ifnum\value{mp}<1
     \ifnum\value{hp}>11
@@ -103,7 +100,6 @@
       \HPMPSPboxes
     \fi
   \fi
-
 }
 
 \newcommand\boxStat[2][0]{%
-- 
GitLab