Add example json

This commit is contained in:
Arnaud Vergnet 2021-03-12 16:42:07 +01:00
parent efb4696b06
commit 166a7e15f9

39
json_example.json Normal file
View file

@ -0,0 +1,39 @@
{
speaker: {
id: 5,
emotion: "happy"
},
scene: {
id: 2
},
dialog: {
message: "Coucou ${username} !",
choices_free: {
placeholder: "Écris ton nom",
global_var_name: "username",
},
choices_multiple: [
{
title: "choix 1",
arc: 0,
infobox: {
title: "coucou !",
text: "ça va ?",
conditions: [
{
id: "education",
value: 46
}
],
},
conditions: [
{
id: "open_mindeness",
value: 90
}
]
}
]
}
}