mirror of
https://github.com/RoY7x/worldbuilding.git
synced 2025-04-29 18:21:40 -04:00
32 lines
481 B
JSON
32 lines
481 B
JSON
{
|
|
"Actor": {
|
|
"types": ["character"],
|
|
"htmlFields": ["biography"],
|
|
"character": {
|
|
"biography": "",
|
|
"health": {
|
|
"value": 10,
|
|
"min": 0,
|
|
"max": 10
|
|
},
|
|
"power": {
|
|
"value": 5,
|
|
"min": 0,
|
|
"max": 5
|
|
},
|
|
"attributes": {},
|
|
"groups": {}
|
|
}
|
|
},
|
|
"Item": {
|
|
"types": ["item"],
|
|
"htmlFields": ["description"],
|
|
"item": {
|
|
"description": "",
|
|
"quantity": 1,
|
|
"weight": 0,
|
|
"attributes": {},
|
|
"groups": {}
|
|
}
|
|
}
|
|
}
|