I'm creating a simple formulae for the spell Fire bolt, where the damage increases at 5, 11 and 17 levels, here is the formulae: (floor((@{sorcerer_level} - 5) / 6) + 2) it is simple and worked fine, but how do I convert the number I receive to the number of dices that must be rolled, I tried (floor((@{sorcerer_level} - 5) / 6) + 2)d10 but did not worked, and I really dont know how to do it