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
|
static const char* success_messages[] = {
"yes! that's the spirit, sweetie!",
"great job, honey! i'm proud of you~",
"that's my little star! you did amazing~",
"*pets your head*",
"*gives you scratches*",
"that's a good boy~",
"aww what a good boy~ mommy knew you could do it~",
"*gives you a sticker*",
"you're doing so well~!",
"you're making mommy so happy~",
"good boy~ mommy's so proud of you~",
NULL
};
static const char* failure_messages[] = {
"mommy's here for you, no matter what~",
"it's alright, sweetie. take a breath and try again~",
"i believe in you, honey. let's try once more~",
"mommy believes in you~",
"it's okay, mommy's here for you~",
"try again for mommy~",
"oops~! mommy loves you anyways~",
"everything's gonna be okay~",
"do you need mommy's help~?",
"aww, you'll get it next time~",
NULL
};
|