From 295bdf1fa50a198e1debc08cad4dd91cdb4777ae Mon Sep 17 00:00:00 2001 From: Malin Freeborn <malinfreeborn@posteo.net> Date: Sun, 12 Nov 2023 03:41:16 +0100 Subject: [PATCH] calculate spell Damage properly --- magic.sty | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/magic.sty b/magic.sty index f2aaa620..2d80eabc 100644 --- a/magic.sty +++ b/magic.sty @@ -12,6 +12,8 @@ \setcounter{spellCost}{1} \newcounter{spellPlusTwo} \setcounter{spellPlusTwo}{1} +\newcounter{spellPlusThree} + \setcounter{spellPlusThree}{1} \newcounter{castingBonus} \setcounter{castingBonus}{1} @@ -85,6 +87,9 @@ }% \setcounter{spellPlusTwo}{\value{spellCost}}% \addtocounter{spellPlusTwo}{2}% + \setcounter{spellPlusThree}{\value{spellCost}}% + \addtocounter{spellPlusThree}{3}% + \conDmg{spellPlusThree} \renewcommand\spellEnhancements{#2}% \renewcommand\spellAction{#3}% \renewcommand\spellSphere{#4}% -- GitLab