
I have a pseudodragon as a cohort. There's a lot of different thing's in this macro all of which work. It's attack is 1d3-2 plus any damage from the skirmish ability which is in the macro as a toggle on/off. However I need to set the minimum damage to not be lower than 1. Even with the skirmish ability, I could roll a 1 on the d3, a 1 on the d6 and end up with a total of 0 damage. Obviously on a roll like this minimum damage would be 1, but that's not what the macro show's. Here is the Macro. &{template:DnD35Attack} {{pcflag=true}} {{name=Tanis}} {{subtags=uses poision sting!}} {{attack1=A1:[[d20cs+10+?{Attack|0}]]}} {{critconfirm1=Crit?:[[d20+10+?{Attack|0}]]}} {{damage1=D1:[[1d3+?{Damage|0}+?{Skirmish?| No, [[0]] |Yes,[[1d6]] }-2]]}} {{critdmg1=+[[(d3-2+?{Damage|0})]]}} {{fullattackflag=[[?{Draconic Zeal|0}d1]]}} {{attack2=A2:[[d20cs+10+?{Attack|0}]]}} {{critconfirm2=Crit?:[[d20+10+?{Attack|0}]]}} {{damage2=D2:[[1d3+?{Damage|0}-2]]}} {{critdmg2=+[[(d3-2+?{Damage|0})]]}} {{attack3=A3:[[d20cs+10+?{Attack|0}]]}} {{critconfirm3=Crit?:[[d20+10+?{Attack|0}]]}} {{damage3=D3:[[1d3-2+?{Damage|0}]]}} {{critdmg3=+[[(d3-2+?{Damage|0})]]}} The minimum value would need to also be set for attack 2 and 3 as well as all critical damage. Any help would be appreciated.