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 907B

123456789101112131415161718192021222324252627282930313233343536373839
  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. arc: 0,
  19. infobox: {
  20. title: "coucou !",
  21. text: "ça va ?",
  22. conditions: [
  23. {
  24. id: "education",
  25. value: 46
  26. }
  27. ],
  28. },
  29. conditions: [
  30. {
  31. id: "open_mindeness",
  32. value: 90
  33. }
  34. ]
  35. }
  36. ]
  37. }
  38. }