Push initial structure

This commit is contained in:
LeRatierBretonnien 2020-05-21 22:03:58 +02:00
parent fec22f2f32
commit c44c308a1c

View File

@ -1,28 +1,96 @@
{ {
"Actor": { "Actor": {
"types": ["character"], "types": ["personnage", "pnj", "creature"],
"character": { "templates": {
"biography": "", "background": {
"health": { "biographie": "",
"yeux": "",
"cheveux": ""
},
"carac": {
"taille": {
"value": 10, "value": 10,
"min": 0, "label": "Taille",
"max": 10 "xp": 0,
}, },
"power": { "apparence": {
"value": 5, "value": 10,
"min": 0, "label": "Apparence",
"max": 5 "xp": 0,
}, },
"attributes": {} "constitution": {
"value": 10,
"label": "Constitution",
"xp": 0,
},
"force": {
"value": 10,
"label": "Force",
"xp": 0,
},
"agilité": {
"value": 10,
"label": "Agilité",
"xp": 0,
},
"dexterité": {
"value": 10,
"label": "Dexterité",
"xp": 0,
},
"vue": {
"value": 10,
"label": "Vue",
"xp": 0,
},
"ouïe": {
"value": 10,
"label": "Ouïe",
"xp": 0,
},
"odoratgout": {
"value": 10,
"label": "Odorat-Goût",
"xp": 0,
},
"volonté": {
"value": 10,
"label": "Volonté",
"xp": 0,
},
"intellect": {
"value": 10,
"label": "Intellect",
"xp": 0,
},
"empathie": {
"value": 10,
"label": "Empathie",
"xp": 0,
},
"rêve": {
"value": 10,
"label": "Rêve",
"xp": 0,
},
"chance": {
"value": 10,
"label": "Chance",
"xp": 0,
}
},
},
"personnage": {
"template": [ "background", "carac"],
} }
}, },
"Item": { "Item": {
"types": ["item"], "types": ["item"],
"item": { "item": {
"description": "", "description": "",
"quantity": 1, "quantité": 1,
"weight": 0, "poids": 0,
"attributes": {} "attributs": {}
} }
} }
} }