tweak/total_dice_highlight

Jan 19, 2022 3:43 pm
Dice rules that operate on totals. Requested by @qralloq, @CESN and @Bowlofspinach

e.g.
2d6+x: 6 or less, FAIL; 7-9: partial; 10+: fireworks
Quote
Jan 19, 2022 3:47 pm
The definitive list of the dice rules json

Conditions
These conditions are ANDed, ie. they must all be true for the effect to be applied.
You can apply multiple dice rules for OR conditions.


rolled Matches part of the dice being rolled.
e.g. 'd20' matches 1d20, 5d20 etc. 'd' would match everything.
case insensitive so d6 matches 3D6
natural * If the die result matches this number.
ge If the die result is greater or equal to this number.
le If the die result is less than or equal to this number.
paired Two of the dice show the same value.
last Special formatting for the last dice in a roll.
d100double If true and a d100 shows 11, 22, 33, ..., 99, 100 then this condition is met.
reason If the reason field of the roll contains this text (case insensitive).
total * If the total of the dice is equal to a value.


* natural and total both support expressions. Examples:
"natural":5 matches if a dice roll is exactly 5
"natural":"<15" matches if a dice roll is less than 15
"total":"10<=x<=15" matches if the total is between 10 and 15 (inclusive)
"natural":">=15" matches if a dice roll is greater or equal to 15



Effects
If the conditions are satisfied then the system applies effects specified in these parameters.

highlight Highlights the die, and combination of the following separated with spaces:
bold, success (green), fail (red), info (blue), invert, underline
content Changes the content of the die result. Emoji can be used for content.
contentAppend Appends the content to a dice result or total (depending on the condition used).
hideTotal Hide the total.


Special
If set to true then all the dice in this pool (matching the rolled condition) are sorted. Other conditions are ignored. This is used by games who always want to see the dice rolls in order.

autoSort Automatically sort the dice into numberical order


Examples:
{"rolled":"d20","natural":20,"highlight":"bold success invert"}
If any number of d20s have been rolled and if any of them show a natural 20, then highlight them bold, success (green), invert (white in a green background)

{"rolled": "1d20", "reason":"[injury]", "ge": 5, "le": 7, "content": "Internal Injury"}
If 1d20 is rolled and the reason contains the text '[injury]' and the roll is between 5 and 7, then change the content of the roll to say "Internal Injury"

{"rolled":"3d6","lastDie":true,"highlight":"underline"},
{"rolled":"3d6","paired":true,"highlight":"info bold"}
If 3d6 are rolled then highlight the last dice by underlining it.
If 3d6 are rolled and any two dice match, then highlight the last dice by making them blue and bold.

{"rolled": "2d6","total": "<=6","highlight": "fail bold invert", "contentAppend":"😫 Miss"},
{"rolled": "2d6","total": "7<=x<=9", "contentAppend":"😑 Partial Success"},
{"rolled": "2d6","total": "10<=x<=11", "contentAppend":"😊 Success"},
{"rolled": "2d6","total": ">=12","highlight": "success bold invert", "contentAppend":"🤩 Exceptional Success"}

Different highlighting and content appended to the result depending on dice total.
Quote
Jan 19, 2022 3:54 pm

Have you looked at this on staging? Public

No
Yes - I'm happy with it
Briefly - I'm happy with it
Yes - I'm NOT happy with it
Quote
Jan 19, 2022 4:37 pm
"diceRules": [
{"rolled": "2d6","totalle": 6,"content": "💩"},
{"rolled": "2d6","totalge": 7,"totalle": 9,"content": "😐"},
{"rolled": "2d6","totalge": 10,"content": "🎉"}
],


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

Would probably be better using highlight than content, but you get the idea.
Quote
Jan 19, 2022 5:10 pm
Highlighting the totals is working as I would expect it to.

Since that is the the subject title of this thread, so I will limit myself to that, and comment on hidetotals and content elsewhere.

Should we not have a "total is equal to" option? I can't, off the top of my head, think of example where it would be needed, but I am sure there must be situations where exact values matter.

The choice of names is funky. "totalle"? But I can't think of better ones without introducing complex syntax.
Quote
Jan 19, 2022 5:26 pm
I don't know if we want to add this to the documentation, but order matters. So:

{"diceRules": [
  {"rolled": "2d6","totalge": 12, "highlight" : "success", "content": "Exceptional Success"},
  {"rolled": "2d6","totalge": 10, "highlight" : "success", "content": "Success"},
  {"rolled": "2d6","totalge": 7,"totalle": 9, "highlight" : "info", "content": "Partial Success"},
  {"rolled": "2d6","totalle": 6, "highlight" : "fail", "content": "Miss"}
]
}


Works for PbtA without needing to add both totalge and totalle clauses. This is probably more confusing than suggesting using both bounds, but a note about the top-to-bottom order might help avoid confusion.
Quote
Jan 19, 2022 6:58 pm
Rather then and "totalle" business, can we change it to allow '<=>' opperators in the value field?

These can then apply to "rolled" and "natural" and such as well. '"natural":">19"' for Improved Criticals, for example.
Quote
Jan 19, 2022 7:52 pm
Adam, my pretty dice got ruined. :(


Firbob is painting sad little withering trees while sobbing.
Quote
Jan 19, 2022 7:54 pm
Antiproduct says:
Adam, my pretty dice got ruined.
'Ruined' how?
Quote
Jan 19, 2022 9:24 pm
As in gone. No more of this https://media.discordapp.net/attachments/852924587057741864/929833538025582633/unknown.png

It's ok though, I need more time to set up the game needing these dice rules :D
Quote
Jan 20, 2022 8:07 am
vagueGM says:
Rather then and "totalle" business, can we change it to allow '<=>' opperators in the value field?

These can then apply to "rolled" and "natural" and such as well. '"natural":">19"' for Improved Criticals, for example.
Oh yes, vagueGM! That's a far superior syntax.

It can't apply to rolled (that's a string match) but it allows us to operate on total and natural in a more lucid way.
{"rolled": "1d20","reason":"DC15","total": "<15","contentAppend": "❌","highlight":"fail invert bold"}
{"rolled": "d20","natural": ">=19","highlight":"success invert bold"}

To allow ranges I'm going to use "x", so "5<x<7" is valid too (your ordering hack seems a little fragile).
Quote
Jan 20, 2022 1:01 pm
Okay, I just spent way too long trying to make my dice code work without scrolling down this thread to see that it has already been changed 😅 Maybe you can update that in the first post or at least post a note there for other idiots like me.

It works now, though!
Quote
Jan 20, 2022 1:17 pm
bowlofspinach says:
Okay, I just spent way too long trying to make my dice code work without scrolling down this thread to see that it has already been changed 😅 Maybe you can update that in the first post or at least post a note there for other idiots like me.

It works now, though!
Cheers, yes - I was probably still trying to refine the rules based on playing with it. I've updated that post now. I think I'm pretty happy with this.
Quote
Jan 20, 2022 2:24 pm
Adam says:
It can't apply to rolled (that's a string match)
Oh, yeah, "rolled" is not to match the value rolled, it is to match the dice code. Natural matches the dice values. That is what I meant. :)
Adam says:
... ordering hack seems a little fragile ...
Which was actually my point, badly made. :)
The order can mess things up, people should be told how the order matters so they can avoid it. I can't see a reason to rely on order rather than explicit ranges, except where people later add a new rule (PbtA might have the 12+ added later when people have leveled up, and the 10+ was good enough till then, but triggers first and causes issues).
Quote
Jan 20, 2022 2:26 pm
Can we replace the "success", "info", and "miss" phrases in the dice highlighting codes with the colors they result in? Then we can use other colors and not be limited to the three predefined outcomes.
Quote
Jan 20, 2022 2:29 pm
Two more things about dice highlighting:

Right now, it seems like if you compare individual dice, it's always teh dice being highlighted and if you compare the total, it's the total being highlighted. Could there be an option to say that for example if you roll 3D10 and the total is above 20, the dice are highlighted a certain way?

And second, right now, highlighting color is dependant on keywords (success, failure, info). Wouldn't it make more sense to just use the names of the colors (green, red, blue)? And maybe add yellow as well... I know that might be an issue on light mode depending on the shade, but it would be nice for red=fail, yellow=partial, green=success
Quote
Jan 20, 2022 2:30 pm
vague stole my thought and posted it before I was done typing!
Quote
Jan 20, 2022 2:33 pm
bowlofspinach says:
vague stole my thought and posted it before I was done typing!
I felt the strong psychic emanations had had to scoop you. :)
Quote
Jan 20, 2022 2:34 pm
bowlofspinach says:
... use the names of the colors ... an issue on light ...
All the standard color cautions would apply, people need to know how to use colors before they use colors. And this is a once off and can be fixed if players complain about the choices.

You do not have permission to post in this thread.