No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

json_example.json 883B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. speaker: {
  3. id: 5,
  4. emotion: "happy"
  5. },
  6. scene: {
  7. id: 2
  8. },
  9. dialog: {
  10. message: "Coucou ${username} !",
  11. choices_free: {
  12. placeholder: "Écris ton nom",
  13. global_var_name: "username",
  14. },
  15. choices_multiple: [
  16. {
  17. title: "choix 1",
  18. infobox: {
  19. title: "coucou !",
  20. text: "ça va ?",
  21. conditions: [
  22. {
  23. id: "education",
  24. value: 46
  25. }
  26. ],
  27. },
  28. conditions: [
  29. {
  30. id: "open_mindeness",
  31. value: 90
  32. }
  33. ]
  34. }
  35. ]
  36. }
  37. }