Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Is it possible to add exploded dice to previous rolls?

A topic by missiefish created Jun 16, 2021 Views: 216 Replies: 1
Viewing posts 1 to 2

I want to make an automatic crit expression, (i.e a d20 that will explode into a d8 and add that number to the previous rolled attack) is this possible?

Developer

You could definitely explode a d20 into a d8:

d20!{20=[d8]}

but the d8 will be added to the d20 result because it is part of the same dice pool. To sum the damage pool with the exploded d8, you would need to look at the dice and do the sum yourself.

So whilst it is possible to roll both attack and damage at the same time, I would recommend rolling the attack first and then rolling damage afterward if the attack hits (this saves good damage rolls from being wasted too ;p)