Dice pools? Dice pools.

Mar 16, 2022 11:22 am
Here's a thought(?)/question (?) on dice rules;
Dice pool rule
-Define dice
-add dice to the roll pool somehow before rolling
-GM posting a roll for players to click and add to their post.

Is any of this somehow achievable already?
How hard would it be to implement?

Asking for a friend.
Quote
Mar 16, 2022 11:51 am
'Dice pools' are not a really well-defined term. They all revolve around a set of rules for interpreting the result. Would the roller not need to understand what to do with the dice once they are rolled?

For now we can collect the needed dice by discussion and then roll the number needed, and the humans can interpret what they mean.

Being able to keep just the highest or lowest helps with many dice pool rulesets.

Do we yet have the ability to not add up the dice? That would be useful for dice pools where the total does not matter.
Quote
Mar 16, 2022 12:45 pm
I'll try to outline the case a bit better.

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?

Rules can define the details, e.g. highlighting successes etc, like TftL rules.
Last edited March 16, 2022 12:57 pm
Quote
Mar 16, 2022 2:06 pm
Yah, I'm still confused on how this would work too. Can you provide an example? It would be hard to code something like that.
Quote
Mar 16, 2022 3:15 pm
Basically, instead of adding a new roll when clicking on a rolls field, it would just add those dice to an existing roll.

At least that's what I think Antiproduct wants and what I have been thinking about for a while now as well
Quote
Mar 16, 2022 3:17 pm
Basically, if you select

Trait A | 2D6

and

Trait B | 1D8

on your sheet, the current system would turn that into two rolls:
Trait A | 2D6
Trait B | 1D8

But a dice pool system would turn that into one roll:

Trait A, Trait B | 2D6, 1D8
Quote
Mar 16, 2022 3:17 pm
Basically, I'm starting every post with basically
Quote
Mar 16, 2022 3:20 pm
bowlofspinach says:
Basically, if you select

Trait A | 2D6

and

Trait B | 1D8

on your sheet, the current system would turn that into two rolls:
Trait A | 2D6
Trait B | 1D8

But a dice pool system would turn that into one roll:

Trait A, Trait B | 2D6, 1D8
Why's this better?
Quote
Mar 16, 2022 3:21 pm
Because it takes up less space and looks better. And because then I would actually use it for games like Cortex if it worked like that, while right now, I still do that manually
Quote
Mar 16, 2022 3:38 pm
This mechanism would also apply to Genisys (or however they spells it) and the FFG Star Wars games.
Quote
Mar 16, 2022 3:45 pm
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
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.
Quote
Mar 16, 2022 3:46 pm
So every time you click a dice roll, it munges the reason and roll onto the last one of the same type (provided there's room)?

I just looked at it with some player data from one of my games.

https://i.imgur.com/K9NcY7Q.png

vs

https://i.imgur.com/S0mNJEK.png


I'm not sure it looks better. It looks like a bloody mess to me.
Quote
Mar 16, 2022 4:09 pm
Because you're using it for what it wouldn't be made for. The intention isn't to mash a couple of unrelated rolls together (though you could use it for attack roll and damage) but to make one roll look like one roll

https://i.imgur.com/B6IYiPD.png

vs

https://i.imgur.com/4rIWsSO.png

And the thing is, this is one roll/action.
You need to take all these results as one roll. It makes much more sense to have them all right with each other rather than spread out like this.
Quote
Mar 16, 2022 4:13 pm
I have to take your word that your first example is clearer.

But how's the computer supposed to know which rolls are related?
Quote
Mar 16, 2022 4:14 pm
I think my [dicepool] tag idea (above) would accomplish that
Quote
Mar 16, 2022 4:26 pm
That already works without a dicepool tag (if I understand the requirement).

https://i.imgur.com/Rb0ypAD.png

https://i.imgur.com/IqR82dy.png
Quote
Mar 16, 2022 4:27 pm
In bowl's case, it might be something like this:

[abilities="Character Sheet"]
Teams: [_t=8] [_tBool=1/1]
Uncompromising: [_u=8] [_uBool=1/1]
Superhuman Punch: [_sp=10] [_spBool=1/1]
Enhanced Speed: [_es=8] [_esBool=1/1]
Combat: [_c=10] [_cBool=1/1]

[table="rolls"]
Action | Roll
Do Action | [dicepool][_$=tBool]d[_$=t] + [_$=uBool]d[_$=u] + [_$=spBool]d[_$=sp] + [_$=esBool]d[_$=es] + [_$=cBool]d[_$=c][/dicepool]
[/table]
[/abilities]
[ +- ] test dice pool
Note: I just typed out the results of the [dicepool] tag in the charsheet as an example
Edit:
Testing without [dicepool] tag as Adam suggests ...
[ +- ] test dice pool
Quote
Mar 16, 2022 4:29 pm
Adam says:
That already works without a dicepool tag (if I understand the requirement).
Oh, that's great! In that case, ignore my last post XD
Quote
Mar 16, 2022 4:29 pm
Too late. I've added your example to this game.

Okay. So the problem (if this is a solution) is that the page doesn't recalculate the roll based on clicking things.

Rolls

Do Action - (1d8+1d8+1d10+1d8+1d10)

(6) + (1) + (9) + (3) + (2) = 21

Quote
Mar 16, 2022 4:33 pm
Testing

Rolls

Chal's example: Do Action - (0d8+0d8+1d10+0d8+1d10)

(1) + (8) + (2) + (1) + (9) = 21

Quote
load next

You do not have permission to post in this thread.