-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDialog.js
More file actions
90 lines (90 loc) · 2.86 KB
/
Dialog.js
File metadata and controls
90 lines (90 loc) · 2.86 KB
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
module.exports = {
annalina: {
greetings: [
"Good morning, Sensei~",
"Sensei, let's work hard today!",
"Annalina will be your secretary today",
"Annalina will be in your care today."
],
idleTalks: [
"If you are free now, do you want me to tell your fortune? :kwink:",
"I love magic. Magic is my life. :heart:",
"Huh... You can't... If you touch that place... :confounded:"
],
commonGoodMorning: [
"Good Morning, Sensei"
],
commonGoodNight: [
"Good Night, Sensei",
"Have a sweet dream, Sensei",
"See you again, Sensei"
],
commonThanks: [
"You are welcomed, Sensei :heart:"
],
answers: [
"It is certain",
"It is decidedly so",
"Without a doubt",
"Yes, definitely",
"You may rely on it",
"As I see it, yes",
"Most likely",
"Outlook good",
"Yes",
"Signs point to yes",
"Reply hazy try again",
"Ask again later",
"Better not tell you now",
"Cannot predict now",
"Concentrate and ask again",
"Don't count on it",
"My reply is no",
"My sources say no",
"Outlook not so good",
"Very doubtful"
],
decline: [
"You have used up all your bread. Please ask me again later.",
"Too bad, no more bread for you.",
"Please come again later.",
"You really want to know that bad?"
]
},
elsa: {
greetings: [
"Good morning",
"Let's work hard today!",
"Elsa will be your secretary today",
"Elsa will be in your care today."
],
idleTalks: [],
commonGoodMorning: [],
commonGoodNight: [],
commonThanks: [],
decline: [
"You have used up all your bread. Please pat me again later.",
"That is enough for now.",
"Pat me again later.",
"You really want to pat me that bad?"
]
},
ruka: {
greetings: [
"Good morning, Boss",
"Let's work hard today!",
"Ruka will be your secretary today",
"Ruka will be in your care today."
],
idleTalks: [],
commonGoodMorning: [],
commonGoodNight: [],
commonThanks: [],
decline: [
"You have used up all your bread. Please roll again later.",
"That is enough for now.",
"You can roll again later.",
"You really want to hire a new employee that bad?"
]
}
}