-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsentences.js
67 lines (65 loc) · 1.38 KB
/
sentences.js
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
var sentences = {
page_welcome_msg: "Hey !\nWelcome to my shop !\nFeel free to look around :)\nJust tell me: \"Let's shop\" when you want to get started",
user_wants_to_buy: [
"buy",
"shop",
"purchase",
"show me what you (have|got)",
"what do you (have|got|offer)",
"show products"
],
user_welcoming_messages: [
"^Hello",
"^Hi",
"^Hey",
"^Good morning",
"^Morning",
"^Good afternoon",
"^Good evening",
"^What's up",
"^Sup",
"^How's it going",
"^Howdy",
"^Well hello",
"^Why hello there.",
"^Yo",
"^Greetings",
"^Look who it is",
"^Look what the cat dragged in"
],
bot_welcoming_messages: [
"Hello",
"Hi there",
"Hey",
"Howdy",
"Well hello",
"Hello there",
"Greetings"
],
user_says_thanks: [
"^thanks$",
"^thanks dude",
"^thanks man",
"^thanks bot",
"^thanks !",
"^thank you$",
"^thank you !",
"^danke",
"^cheers",
"spank you"
],
bot_says_you_are_welcome: [
"No worries ;)",
"Sure thing !",
"You're welcome :)",
"I'm Here to help."
],
bot_not_sure_what_user_means: [
"Oopsy oops...not sure what you mean by that :(",
"Not really sure what you mean by that...",
"Hmmm, what ?",
"mmmm, what was that again ?",
"Sorry but I don't quite understand what u mean :("
]
}
module.exports = sentences;