Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Yep, that's how you can do it! also, you can split up the results with an expression like this if you want:

physical=2d6, fire=f6, total=physical+fire

That will output both results individually and the combined total so you can quickly get whichever result you need :)


if you want a simpler expression you can do something like this, which is the same thing but results are not labelled:

2d6, f6, result1+result2

Is there a way to roll two different dice and drop the lowest of them? I haven't been able to find an expression that does this successfully.

there is, you can apply some roll conditions to named results, like this:

roll=d6+f6, rollK


But in the current version it only works if the conditions are applied to a result that contains all of the relevant dice, so you can’t combine results and then apply a condition like this (not yet, sorry):

roll1=d6, roll2=f6, roll=roll1+roll2, rollK