worldbuilding/template.json
Matt Smith f69e3841ff 10: Add attribute groups base implementation
- Added support for attribute groups
- Added rollable buttons to formula attributes
- Added additional i18n translation strings
2020-09-28 15:54:14 +00:00

30 lines
417 B
JSON

{
"Actor": {
"types": ["character"],
"character": {
"biography": "",
"health": {
"value": 10,
"min": 0,
"max": 10
},
"power": {
"value": 5,
"min": 0,
"max": 5
},
"attributes": {},
"groups": {}
}
},
"Item": {
"types": ["item"],
"item": {
"description": "",
"quantity": 1,
"weight": 0,
"attributes": {},
"groups": {}
}
}
}