Push initial structure

This commit is contained in:
2020-05-21 21:48:20 +02:00
parent 81c79376af
commit 8f67397096
10 changed files with 827 additions and 0 deletions

28
template.json Normal file
View File

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