Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Minimum die result for weapon damage in Only War

So I need a little help figuring out a roll macro. In Only War some weapons have a quality called "Proven X" where X is a number, say Proven 3 for example. This means that the roll on the d10 damage die will always be no lower then a three. With the quality of life update to the sheets some time ago it says we can use the following text for most weapons, so for a 1d10+3 weapon with Proven 3 the roll would be: {1d10, 0d1+3}+3 This works fine for most infantry weapons, but some larger weapons have this quality as well, and they often roll multiple d10, so how could I translate this to say a Lascannon which is a 5d10+10 with Proven 3?
Group the individual dice rolls as follows: [[ [[{1d10, 3d1}]] + [[{1d10, 3d1}]] + [[{1d10, 3d1}]] + [[{1d10, 3d1}]] + [[{1d10, 3d1}]] + 10 ]]
1494168597
Silvyre
Forum Champion
You could also write that as follows: [[ {d10,d10,d10,d10,d10,{3},{3},{3},{3},{3}}kh5 + 10 ]]