Sep 2, 2022 2:55 pm
So I upgraded an old Mothership sheet and wanted to set up dice rules for it as well. There are 3 different dice rules I am trying to combine, two are d100, and 1 is 2d10. What I want is something like this:
"diceRules": [
{"rolled": "1d100","reason": "(##)","total": ">=##","highlight": "fail invert bold"},
{"rolled": "1d100","reason": "(##)","total": "<##","highlight": "success invert bold"},
{"rolled": "d100double","reason": "(##)","total": ">=##","contentAppend": "❌","highlight": "fail invert bold"},
{"rolled": "d100double","reason": "(##)","total": "<##","contentAppend": "✅","highlight": "success invert bold"},
{"rolled": "2d10","reason": "(##)","total": "<=##","highlight": "fail invert bold"},
{"rolled": "2d10","reason": "(##)","total": ">##","highlight": "success invert bold"}
],
Rolling under your stat/skill is a success, rolling doubles is a crit success/fail, and rolling 2d10 over stress is a success. I've tried this but the doubles don't work, and neither do the 2d10 rules. Any help for combining these would be appreciated!
"diceRules": [
{"rolled": "1d100","reason": "(##)","total": ">=##","highlight": "fail invert bold"},
{"rolled": "1d100","reason": "(##)","total": "<##","highlight": "success invert bold"},
{"rolled": "d100double","reason": "(##)","total": ">=##","contentAppend": "❌","highlight": "fail invert bold"},
{"rolled": "d100double","reason": "(##)","total": "<##","contentAppend": "✅","highlight": "success invert bold"},
{"rolled": "2d10","reason": "(##)","total": "<=##","highlight": "fail invert bold"},
{"rolled": "2d10","reason": "(##)","total": ">##","highlight": "success invert bold"}
],
Rolling under your stat/skill is a success, rolling doubles is a crit success/fail, and rolling 2d10 over stress is a success. I've tried this but the doubles don't work, and neither do the 2d10 rules. Any help for combining these would be appreciated!