dice/src/pkjs/config.js

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"
}
];