mirror of
https://github.com/He4eT/dice.git
synced 2026-05-05 01:47:25 +00:00
31 lines
643 B
JavaScript
31 lines
643 B
JavaScript
module.exports = [
|
|
{
|
|
"type": "text",
|
|
"defaultValue": "Press any right-side button on your watch to instantly roll a number from 1 to N."
|
|
},
|
|
{
|
|
"type": "section",
|
|
"items": [
|
|
{
|
|
"type": "heading",
|
|
"defaultValue": "Die Parameters"
|
|
},
|
|
{
|
|
"messageKey": "UPPER_BOUND",
|
|
"type": "slider",
|
|
"label": "N",
|
|
"defaultValue": 6,
|
|
"step": 1,
|
|
"min": 1,
|
|
"max": 999999,
|
|
"attributes": {
|
|
"style": "display: none;"
|
|
}
|
|
},
|
|
]
|
|
},
|
|
{
|
|
"type": "submit",
|
|
"defaultValue": "Save Settings"
|
|
}
|
|
];
|