Antiproduct says:
A character has traits and items.
Each trait and item adds dice to your rolling pool.
Ok,ok. How about a variable (checkbox?) that when it's true, it adds a d(something) and the end roll is calculated by variable total?
If you're not mixing dice types, something like this might work for what you are describing?
[abilities="Character Sheet"]
Base Proficiency: [_base=1]
Ability: [_abl=3] | Active ? [_ablBool=1/1]
Equipment: [_equip=2] | Active ? [_equipBool=1/1]
Other bonuses: [_bonus=1/5]
[table="rolls"]
Action | Roll
Do Action (with Abl/Equip/Bonus?) | [_$=base+abl*ablBool+equip*equipBool+bonus]d20
[/table]
[/abilities]
[ +- ] test dice pool
Create character
Base Proficiency: [_base=1]
Ability: [_abl=3] | Active ? [_ablBool=1/1]
Equipment: [_equip=2] | Active ? [_equipBool=1/1]
Other bonuses: [_bonus=1/5]
[table="rolls"]
Action | Roll
Do Action (with Abl/Equip/Bonus?) | [_$=base+abl*ablBool+equip*equipBool+bonus]d20
[/table]
[abilities="Character Sheet"]
Base Proficiency: [_base=1]
Ability: [_abl=3] | Active ? [_ablBool=1/1]
Equipment: [_equip=2] | Active ? [_equipBool=1/1]
Other bonuses: [_bonus=1/5]
[table="rolls"]
Action | Roll
Do Action (with Abl/Equip/Bonus?) | [_$=base+abl*ablBool+equip*equipBool+bonus]d20
[/table]
[/abilities]
You can adjusted the boxes that currently apply to the action and then click roll.
If you need mixed dice, then we might need a new BBCode tag, maybe something like:
[dicepool]
[_$=base]d20 + [_$=abl*ablBool]d8 + [_$=equip*equipBool]d6 + [_$=bonus]d4
[/dicepool]
Which would render to a clickable button: 1d20 + 3d8 + 2d6 +1d4
When clicked the whole expression is added to a single Roll field.
Dice rules could then interpret the results.