-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresponses.py
122 lines (122 loc) · 4.84 KB
/
responses.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
work = [
{
"text": "CELEB walked into your restaurant for a quick bite. They were very annoyed that you didn't recognize them, so they left without tipping.",
"good": False
},
{
"good": False,
"text": "A bitter old woman came into your restaurant and ordered ITEM. She said it was disgusting and refused to pay."
},
{
"good": True,
"text": "Your mother came to visit you at work and gave you TIP2 as an allowance."
},
{
"good": True,
"text": "An older lady ordered ITEM but received ITEM2. She didn't mind because she loved your smile, so she gave you a TIP2 tip."
},
{
"good": False,
"text": "CELEB walked into your restaurant for a quick bite. They didn't like how you didn't recognize them, so they left without tipping."
},
{
"good": True,
"text": "CELEB walked in and ordered ITEM. They said it was delicious so they left you a TIP3 tip."
},
{
"good": True,
"text": "Your friend came in to give you the TIP3 they borrowed a few months back."
},
{
"good": False,
"text": "A group of teenagers ordered ITEM, ITEM2, ITEM3 and ITEM4. They were very obnoxious the whole time and only left you a TIP tip."
},
{
"good": True,
"text": "A reserved man walked into your restaurant and asked, “Uhh.. May I get a… uh… ITEM?” He departed as soon as he was done and left a TIP on the table."
},
{
"good": True,
"text": "You go up to greet a customer and you realize it’s CELEB! They leave a TIP3 tip and you keep the receipt to put on your wall."
},
{
"good": True,
"text": "Your ex walks in and orders ITEM. After a very awkward confrontation, they leave you a TIP2 tip with “I miss you” on the receipt."
},
{
"good": False,
"text": "A customer catches you on your phone and shuns you. You tell her to leave if she’s going to act like that."
},
{
"good": True,
"text": "An employee of yours bets you that you can’t go the whole shift while using a fake accent. You prove them wrong and gain TIP."
},
{
"good": False,
"text": "At the end of your shift, a woman claims that you gave her an attitude and left without paying."
},
{
"good": True,
"text": "A fortune teller walks in and orders ITEM and tells you that you will be rich soon. Your next customer tips you TIP3."
},
{
"good": True,
"text": "While outside on your break, you run into CELEB! As you’re asking for an autograph, they think you are just a beggar and they throw TIP at you."
},
{
"good": False,
"text": "A tweaker walks into your restaurant asking where the chimpanzees are. You tell them that this isn’t a zoo and they start crying."
},
{
"good": True,
"text": "A talkative old man tells you that he’ll give you TIP2 if you can solve his riddle. You do it with flying colors and he is impressed."
},
{
"good": True,
"text": "A young boy tells you that he’ll give you TIP if you tell a girl a few tables over that he thinks she’s cute. He gets rejected but you gain some money."
},
{
"good": False,
"text": "CELEB walks in and orders ITEM with a nasty attitude. You think to yourself, “Are all celebrities like this in person?”"
},
{
"good": True,
"text": "A nice elderly couple comes in and orders ITEM and ITEM2. They gave you TIP2 on the way out."
},
{
"good": True,
"text": "The mayor walks in to try ITEM. He loved it and gave you TIP2."
},
{
"good": False,
"text": "The health inspector walks in and orders ITEM and ITEM2. As she is eating, a cockroach runs across the table. She threatened to shut your restaurant down but you threatened her back."
},
{
"good": True,
"text": "Your grandma walks in to give you an early birthday card. It contained TIP3 and a very thoughtful note."
},
{
"good": False,
"text": "A man walks in and asks if you accept bitcoin. You say no and he walks right out the door."
},
{
"good": True,
"text": "A young man walks in and orders ITEM. He was happy with his order and tipped TIP2."
},
{
"good": True,
"text": "An older woman couldn't decide between ITEM and ITEM2, so she ordered both. She was very pleased and tipped TIP2."
},
{
"good": True,
"text": "A wealthy man came in and ordered ITEM. He was extremely pleased with the service and tipped TIP3."
},
{
"good": False,
"text": "As you are walking to give a customer ITEM, you trip over a chair and drop everything."
},
{
"good": True,
"text": "A group of teenagers walk in and attempt to steal ITEM. You caught them and they bribed you TIP2 not to call the cops."
}
]