Skip to content
Snippets Groups Projects
stefan.json 3 KiB
Newer Older
{
  "$schema": "../../src/dialogSet.schema.json",
  "title": "Stefan Dißmann – Geschäftsleitung",
  "imageUrl": "./images/StefanDissmann300dpi3.jpg",
  "startDialogName": "start",
  "dialogs": {
    "start": {
      "text": "",
      "options": [
        {
          "text": "Bin ich hier richtig bei Herrn Dißmann?",
          "forbiddenFacts": [
            "stefan/madeFirstContact",
            "kitchenWaste/carriesStinkingBag"
          ],
          "linksToDialog": "firstContact"
        },
        {
          "text": "Halten sie nicht die DAP1-Vorlesung?",
          "requiredFacts": ["stefan/madeFirstContact"],
          "forbiddenFacts": ["kitchenWaste/carriesStinkingBag"],
          "linksToDialog": "dap1question"
        },
        {
          "text": "Haben sie schon einmal darüber nachgedacht, Mitglied bei den Alumni zu werden?",
          "requiredFacts": [
            "stefan/madeFirstContact",
            "hans/acceptedQuestToFindNewAlumniMembers"
          ],
          "forbiddenFacts": [
            "stefan/askedToJoinAlumni",
            "kitchenWaste/carriesStinkingBag"
          ],
          "linksToDialog": "joinAlumniQuestion"
        },
        {
          "text": "Hallo?",
          "requiredFacts": ["kitchenWaste/carriesStinkingBag"],
          "linksToDialog": "kitchenBagResponse"
        }
      ]
    },
    "firstContact": {
      "text": "Ja, sind sie. Kann ich etwas für dich tun?",
      "addFacts": ["stefan/madeFirstContact"],
      "options": [
        {
          "text": "Ich glaube schon",
          "linksToDialog": "start"
        }
      ]
    },
    "dap1question": {
      "text": "Ja, schon seit längerer Zeit und auch in diesem Semester wieder.",
      "options": [
Jonas Zohren's avatar
Jonas Zohren committed
        {
          "text": "Erzählen sie mir bitte mehr",
          "linksToDialog": "showDap1Video"
        },
        {
          "text": "Interessant",
          "linksToDialog": "start"
        }
      ]
    },
    "showDap1Video": {
      "peertubeVideoId": "56907252-8545-4bc3-89ed-a3fa2e3cf850",
      "options": [
        {
          "text": "Interessant",
          "linksToDialog": "start"
        }
      ]
    },
    "joinAlumniQuestion": {
      "text": "Bitte was?",
      "options": [
        {
          "text": "Herr Decker sucht neue Mitglieder für den Alumni-Verein.",
          "linksToDialog": "joinAlumniQuestion2"
        }
      ]
    },
    "joinAlumniQuestion2": {
      "text": "Ja ja, das weiß ich, aber ich bin bereits Mitglied. Hat er dich zu mir geschickt?",
      "options": [
        {
          "text": "Nein, ich soll nur generell Leute finden.",
          "linksToDialog": "joinAlumniQuestion3"
        }
      ]
    },
    "joinAlumniQuestion3": {
      "text": "Na dann weiter viel Erfolg dabei.",
      "addFacts": ["stefan/askedToJoinAlumni"],
      "options": [
        {
          "text": "Danke.",
          "linksToDialog": "start"
        }
      ]
    },
    "kitchenBagResponse": {
      "text": "Mein Büro ist nicht der Müllraum! Bring das bitte weg.",
      "options": []