Back to Freecodecamp

Task 147

curriculum/challenges/english/blocks/learn-greetings-in-your-first-day-at-the-office/656d1a520285050552702fc1.md

latest2.0 KB
Original Source
<!-- AUDIO REFERENCE: Brian: Sophie is a great workmate. She's very kind and helpful. Sophie: Oh, come on, Brian. -->

--description--

In conversations, people sometimes use expressions to show modesty. Sophie's answer is like that.

--questions--

--text--

Why does Sophie say Oh, come on, Brian?

--answers--

She disagrees with Brian's statement.

--feedback--

Sophie isn't necessarily disagreeing, but she might feel the compliment is too much.


She feels Brian is exaggerating.


She wants Brian to stop talking.

--feedback--

The dialogue doesn't suggest that Sophie wants Brian to stop speaking entirely.


She is angry at Brian.

--feedback--

Sophie's response is playful and modest, not angry.

--video-solution--

2

--scene--

json
{
  "setup": {
    "background": "cafe.png",
    "characters": [
      {
        "character": "Sophie",
        "position": { "x": 25, "y": 15, "z": 1.3 },
        "opacity": 0
      },
      {
        "character": "Brian",
        "position": { "x": 75, "y": 15, "z": 1.2 },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "1.1-4.mp3",
      "startTime": 1,
      "startTimestamp": 18.75,
      "finishTimestamp": 23.85
    }
  },
  "commands": [
    {
      "character": "Sophie",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Brian",
      "opacity": 1,
      "startTime": 0
    },

    {
      "character": "Brian",
      "startTime": 1,
      "finishTime": 4.5,
      "dialogue": {
        "text": "Sophie is a great workmate. She's very kind and helpful.",
        "align": "right"
      }
    },
    {
      "character": "Sophie",
      "startTime": 4.75,
      "finishTime": 5.7,
      "dialogue": {
        "text": "Oh, come on, Brian.",
        "align": "left"
      }
    },

    {
      "character": "Sophie",
      "opacity": 0,
      "startTime": 6.2
    },
    {
      "character": "Brian",
      "opacity": 0,
      "startTime": 6.2
    }
  ]
}