forked from derand/kanojo_server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
reactionword.json
3144 lines (3142 loc) · 80.6 KB
/
reactionword.json
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"reactionword": [
{
"data": [ "…", "It still makes my heart skip a beat.", "Whenever you do that…" ],
"a": [10,11,12,20,21]
},
{
"data": [ "Mm…", "I’m getting dizzy…", "…" ],
"a": [10,11,12,20,21]
},
{
"data": [ "Good Morning.", "What are you doing!", "That was unexpected." ],
"a": [10,11,12,20,21],
"pod": [1]
},
{
"data": [ "Thank you…!", "The way you take care of me,", "You know you're starting to spoil me?" ],
"a": [1]
},
{
"data": [ "Thank you…!", "I won't be lonely now.", "It'll feel like you're right by my side." ],
"a": [1]
},
{
"data": [ "Thanks…!", "I'm won't be lonely anymore, even if we're not together.", "I think about you all day…" ],
"a": [1],
"pod": [3]
},
{
"data": ["Thanks…!", "I'll treat it as if it were you.", "I'm gonna sleep with it every night…!"],
"a": [1]
},
{
"data": ["Your presents,", "To me…", "They’re like my treasure."],
"a": [1]
},
{
"data": ["I don’t want gifts.", "I’d rather…", "You be with me…"],
"a": [1]
},
{
"data": ["Each and every one..", "You put a lot of thought into it.", "That’s what makes me happy."],
"a": [1]
},
{
"data": ["This time…", "I give you something.", "What do you want…?"],
"a": [1]
},
{
"data": ["Thank you…", "This is like a dream…", "…I'm really happy."],
"a": [1]
},
{
"data": ["…", "Why me?", "What did I do to deserve this?"],
"a": [1]
},
{
"data": ["…", "Why are you giving me a present?", "Were we close like that?"],
"a": [1]
},
{
"data": ["…", "I don't know what to do.", "I didn't do anything to deserve this."],
"a": [1]
},
{
"data": ["…", "This is really nice,", "But I can’t take this."],
"a": [1]
},
{
"data": ["This…what does it mean?", "I'm sorry but…", "There's no reason to give me this."],
"a": [1]
},
{
"data": ["Really?", "There's no reason for you to give me that.", "You insist? Alright, thanks."],
"a": [1]
},
{
"data": ["For me…?", "I'll take it.", "Thank you."],
"a": [1]
},
{
"data": ["A present…", "This is really unexpected.", "I can really have this?"],
"a": [1]
},
{
"data": ["For me?", "Why?", "…Thanks."],
"a": [1]
},
{
"data": ["Why for me?", "…Alright.", "Thanks."],
"a": [1]
},
{
"data": ["This is for me?", "Tell me why you got me this.", "You can't say it?"],
"a": [1]
},
{
"data": ["Hey, good morning.", "You’re giving me a gift…", "…I can’t give you anything."],
"a": [1]
},
{
"data": ["Hey! Nice morning, isn’t it?", "That’s out of the blue… really?", "I feel bad."],
"a": [1],
"pod": [1]
},
{
"data": ["Good Morning.", "No way!", "I can’t accept this!"],
"a": [1],
"pod": [1]
},
{
"data": ["Oh…good morning.", "No, no!", "I can’t accept this!"],
"a": [1],
"pod": [1]
},
{
"data": ["Good Morning.", "I can’t accept this!", "I feel bad."],
"a": [1],
"pod": [1]
},
{
"data": ["Th, this…", "A surprise?", "Thank you…!"],
"a": [1]
},
{
"data": ["Th, this…", "No, it's not a problem.", "I'm surprised and excited at the same time."],
"a": [1]
},
{
"data": ["Th, this…", "I like stuff like this.", "But is it really okay?"],
"a": [1]
},
{
"data": ["This…?", "Is for me?", "Really!?"],
"a": [1]
},
{
"data": ["What's this…?", "Wonder what it is.", "I want to open it."],
"a": [1]
},
{
"data": ["Th, this…", "A surprise?", "Thank you…!"],
"a": [1]
},
{
"data": ["What's this…?", "Wonder what it is.", "I want to open it."],
"a": [1]
},
{
"data": ["Good Morning.", "…I can’t accept this.", "…Alright, if you insist."],
"a": [1, 2],
"pod": [1]
},
{
"data": ["Hey.", "What? It’s not a special occasion, is it?", "Thank you…I’m going to take care of it."],
"a": [1, 2]
},
{
"data": [ "You didn’t have to.", "All I want is you…", "That’s all I need to be happy." ],
"a": [1,2]
},
{
"data": [ "Thank you…", "For thinking about me.", "I really appreciate it." ],
"a": [2]
},
{
"data": ["You know exactly what I want.", "I can tell you put a lot of thought into it.", "It makes me really happy…"],
"a": [2]
},
{
"data": ["Really?", "There's no reason for this…", "I'll take it I guess."],
"a": [2]
},
{
"data": ["I don’t need gifts…", "My heart is yours, okay?", "You can relax."],
"a": [2]
},
{
"data": ["Thanks.", "I'll get you something, too.", "Ask for anything!"],
"a": [2]
},
{
"data": ["Thanks.", "This is really nice…", "But don’t worry about it, okay?"],
"a": [1,2]
},
{
"data": ["I love it…", "But…", "It’s not just me, is it…?"],
"a": [2]
},
{
"data": ["Why do you always give me stuff?", "You have to tell me today.", "Does it mean…you like me…?"],
"a": [2]
},
{
"data": ["A present…", "There's no reason for you to give me one.", "I mean, I'll take it anyways."],
"a": [2]
},
{
"data": ["A present…", "Hey,", "You don't need to do that."],
"a": [2]
},
{
"data": ["A present…!?", "Just for me?", "…Then I'll take it. Thanks."],
"a": [2]
},
{
"data": ["A present…", "It's…", "A nice gesture."],
"a": [2]
},
{
"data": ["A present…", "For me?", "Uh, I don’t know what to do…"],
"a": [2]
},
{
"data": ["A present…!?", "I've wanted this!", "Um, thank you. I…like it."],
"a": [2]
},
{
"data": ["A present…", "Hmmm…?", "Are you trying to get lucky!?"],
"a": [2]
},
{
"data": ["A present…!?", "How did you know I would love this?", "This is really great…"],
"a": [2]
},
{
"data": ["You know exactly…", "How to make me happy.", "Thank you."],
"a": [1, 2]
},
{
"data": ["Thanks.", "Can I open it here?", "Whoa!"],
"a": [2]
},
{
"data": ["When you give me stuff,", "I get really really excited.", "I can't stop being excited."],
"a": [2]
},
{
"data": ["Thank you.", "I'm happy when I'm with you.", "I just realized."],
"a": [2]
},
{
"data": ["Thank you.", "I'm gonna take care of it.", "Because someone important to me gave it to me."],
"a": [2]
},
{
"data": ["Thank you.", "I'm gonna keep it forever.", "This is gonna remind me of you."],
"a": [2]
},
{
"data": ["This present,", "Is it just for me?", "……I love it."],
"a": [2]
},
{
"data": ["…Thank you…!", "I should give you something, too.", "How about a kiss…?"],
"a": [2]
},
{
"data": ["…Thank you…!", "This is staying with me forever.", "It's like you're right next to me."],
"a": [2]
},
{
"data": ["…Thanks…!", "This is so nice!", "You're gonna make me cry…"],
"a": [2]
},
{
"data": ["You don’t have to do that.", "I love the thought you give it.", "You don’t need to get me anything."],
"a": [1, 2]
},
{
"data": ["You don’t have to give me anything anymore, okay?", "As long as you're by my side…", "That’s what makes me happy."],
"a": [2],
"pod": [2]
},
{
"data": ["You didn’t have to get me that.", "As long as you're with me…", "I'm happy, you know that?"],
"a": [2]
},
{
"data": ["Yay!", "This is great!", "But can I really take this?"],
"a": [2],
"pod": [2, 3]
},
{
"data": ["Yaay!", "I can have this!?", "Thank you!"],
"a": [2],
"pod": [2, 3]
},
{
"data": ["Yay!", "I wonder what it is.", "Can I open it?"],
"a": [2]
},
{
"data": ["Yay!", "A present…!", "But…Why? (Stares)"],
"a": [2]
},
{
"data": ["Yay!!", "This is really nice.", "But why are you giving it to me?"],
"a": [1, 2]
},
{
"data": ["Thank you!", "You picked this!?", "Hehe, this is really exciting!"],
"a": [1, 2]
},
{
"data": ["Thank you!", "I really wanted this!", "Let me give you a kiss!"],
"a": [2]
},
{
"data": ["I guess I'll take it.", "But.", "I'm not giving you anything."],
"a": [1, 2]
},
{
"data": ["Why for me?", "Oh well!", "I'll take it. Thanks!"],
"a": [2],
"pod": [0, 2, 3]
},
{
"data": ["Ah, you're giving me that?", "Hmm, alright.", "Thanks."],
"a": [1, 2]
},
{
"data": ["I can have this?", "Alright, but why?", "Tell me the reason."],
"a": [2]
},
{
"data": ["That's for me?", "Why?", "I'll take it, but still."],
"a": [1, 2]
},
{
"data": ["Thank you!", "But, I don’t need anything.", "As long as you're with me."],
"a": [2]
},
{
"data": ["Hey.", "I bet you’re looking for something else..", "Thank you, though."],
"a": [2]
},
{
"data": ["Good Morning!", "Is it a special day or something?", "Alright, I’ll accept it."],
"a": [2],
"pod": [1]
},
{
"data": ["You…", "You picked it out for me.", "Thank you."],
"a": [2],
"pod": [2,3]
},
{
"data": ["Hey.", "I’ll accept your thoughts.", "Thank you."],
"a": [2]
},
{
"data": ["Wha…", "You're giving this to me?", "I can really have this?"],
"a": [2]
},
{
"data": ["What…(Blushes)", "I haven't looked at it yet,", "But I'm sure I'll love it! "],
"a": [2]
},
{
"data": ["What…(Blushes)", "I don't know if I should take it.", "No, I'm really happy!"],
"a": [2]
},
{
"data": ["Hello.", "I love it! Thank you!", "I'm gonna think about you every time I look at this!"],
"a": [2]
},
{
"data": ["Oh…", "I feel bad,", "You giving me stuff!"],
"a": [2]
},
{
"data": ["What…", "You got this for me?", "Is this really okay?"],
"a": [2]
},
{
"data": ["Hello.", "Did you think about me?", "I love it…!"],
"a": [1,2],
"pod": [1,2,3]
},
{
"data": ["…Thank you…!", "No one's given me a present like this before!", "I'm gonna start crying."],
"a": [2]
},
{
"data": ["Did you…", "Pick that out just for me?", "I can't decline this."],
"a": [2]
},
{
"data": ["I'm not happy for the presents.", "I'm happy that you thought about me.", "Don’t get me wrong, okay…?"],
"a": [2]
},
{
"data": ["You always give me stuff…", "Why?", "I wanna know…"],
"a": [2]
},
{
"data": ["These gifts…", "Do you only give them to me?", "Is it because you like me…?"],
"a": [2]
},
{
"data": ["A present…!?", "Can I take this?", "(Whispers)…This is gonna be my treasure."],
"a": [2]
},
{
"data": ["Hm?", "It's for me? I feel bad.", "I'll get you something, too."],
"a": [2]
},
{
"data": ["A present?", "Huh.", "Oh this is cute…maybe."],
"a": [2]
},
{
"data": ["A present for me?", "What's inside?", "Hmmm, I guess I can take this?"],
"a": [2]
},
{
"data": ["How many times,", "Have you given me gifts full of your thoughts?", "I need to start giving too."],
"a": [2]
},
{
"data": ["The stuff you get me.", "It's always exactly what I want.", "That means you really understand me."],
"a": [2]
},
{
"data": ["A present?", "Why me?", "You're being suspicious."],
"a": [2]
},
{
"data": ["That's enough!", "I get your feeling now…", "More than enough, okay?"],
"a": [2],
"pod": [2,3,0]
},
{
"data": ["Really?", "…", "Thank you!"],
"a": [1, 2]
},
{
"data": ["Really?", "Hm, I wonder what it is!", "Thank you!"],
"a": [2]
},
{
"data": ["Really?", "I wonder what's inside!", "I'm gonna open it."],
"a": [2]
},
{
"data": ["Really?", "Can I open it??", "I can't wait!"],
"a": [2]
},
{
"data": ["Aww! Thank you!", "Can I show this to everyone?", "I wanna show it off!"],
"a": [2]
},
{
"data": ["Yay! Thank you!", "Hehe! I'll think of what to give you!", "You should be excited!"],
"a": [2]
},
{
"data": ["Really?", "Oh man, wonder what it is!", "I'm gonna open it!"],
"a": [2]
},
{
"data": ["Thank you.", "This is going to be my treasure.", "Because you picked it for me."],
"a": [2]
},
{
"data": ["Yay!", "Thank you, thank you!", "A hundred thank you isn't enough!"],
"a": [2]
},
{
"data": ["Hey!", "Really!?", "Thank you!"],
"a": [1, 2]
},
{
"data": ["Morning! I’m feeling good today!", "Aww, really?", "Thanks so much!"],
"a": [2],
"pod": [1]
},
{
"data": ["Gooood Morning!", "Really?!", "But…thanks…"],
"a": [2],
"pod": [1]
},
{
"data": ["What do you want?", "Anything for you!", "Anything I can do."],
"a": [2]
},
{
"data": ["Ah.", "You’re giving me this?", "Thanks!"],
"a": [2]
},
{
"data": ["Good Morning!", "Really? A present?", "…I’ll take it. Thanks."],
"a": [2],
"pod": [1]
},
{
"data": ["Morning!", "You’re making me suspicious.", "I bet you have something planned…!"],
"a": [2],
"pod": [1]
},
{
"data": ["Hold on.", "I’m gonna get you something awesome.", "Hehe."],
"a": [1, 2],
"pod": [3, 4]
},
{
"data": ["You always give me stuff…", "What’s in it?", "You can’t tell me, huh."],
"a": [2]
},
{
"data": ["…Thank you…!", "I have to give you something. Come here?", "(Smooch)"],
"a": [1, 2],
"pod": [1,2,3]
},
{
"data": ["Thank you.", "I love it because you picked it.", "I'm such a lucky girl."],
"a": [1, 2]
},
{
"data": ["Hello.", "A present for me!?", "Haha, more treasure for me!"],
"a": [2]
},
{
"data": ["Hello.", "Really? You picked that out for me?", "It's the best! Thank you!"],
"a": [2]
},
{
"data": ["Hello.", "This is so nice! Thank you!", "I'll be thinking about you when I look at this!"],
"a": [2]
},
{
"data": [ "Finally got to see you…", "I brought stuff to stay the night with.", "I can't be without you anymore." ],
"a": [3]
},
{
"data": [ "Finally got to see you…", "I might start crying just by seeing you…", "I think I can't live without you." ],
"a": [3],
"pod": [2,3]
},
{
"data": ["I finally got to see you…", "I don’t wanna go home tonight.", "…Is that okay?"],
"a": [3]
},
{
"data": ["We finally get to see each other.", "I hate being away from you…", "All I do is think about you."],
"a": [3]
},
{
"data": ["Finally get to see you…", "I don’t ever want to leave you.", "You're gonna be with me til the morning, right?"],
"a": [3],
"pod": [0,3]
},
{
"data": ["Since yesterday…", "I’ve missed you.", "Be mine forever."],
"a": [3],
"pod": [1,2,3]
},
{
"data": ["Please.", "Be with me forever.", "I don’t want to leave you…"],
"a": [3],
"pod": [0,3]
},
{
"data": ["Today…", "We’re gonna spend it all day together?", "I’m okay with that."],
"a": [3],
"pod": [2]
},
{
"data": ["Whenever I spend time with you…", "It makes me like you more.", "It’s a little scary…"],
"a": [3]
},
{
"data": ["Tell me you won’t let go of me…", "If you don’t…", "I won’t be comforted."],
"a": [3]
},
{
"data": ["We're gonna be together for the rest of the day.", "I cried yesterday…", "I don't like it when you're not with me."],
"a": [3],
"pod": [2,3]
},
{
"data": ["Do I worry too much?", "When I think that other girls are after you,", "……It keeps me up at night."],
"a": [3]
},
{
"data": ["I'll be with you no matter what.", "There is no way,", "I can live without you."],
"a": [3]
},
{
"data": ["……Hey,", "I can be with you all day, right?", "Don't leave me behind."],
"a": [3],
"pod": [1,2]
},
{
"data": ["Will you love me forever?", "Don't let go of me,", "Promise?"],
"a": [3]
},
{
"data": ["Hello…", "Hm, is there something you want to do?", "I don't have anything in mind."],
"a": [3]
},
{
"data": ["Hello…", "(Yawn)", "I'm really sleepy."],
"a": [3],
"pod": [3,0]
},
{
"data": ["Hello…", "Can you plan around my schedule?", "Alright, let's go!"],
"a": [3]
},
{
"data": ["Hello…", "If you haven't thought of anything to do,", "There's somewhere I want to go."],
"a": [3]
},
{
"data": ["Hey…", "What do you want to do?", "Cafe? Or do you just wanna walk?"],
"a": [3],
"pod": [1,2,3]
},
{
"data": ["If you can,", "I want to go out tomorrow.", "We'll go to a cafe for a little bit, okay?"],
"a": [3],
"pod": [3,0]
},
{
"data": ["A date this late?", "I only have 30 minutes.", "Next time ask me out during the day, okay?"],
"a": [3],
"pod": [2,3]
},
{
"data": ["I wish you thought about my schedule.", "As much as I hate it,", "I won't be able to stick around long."],
"a": [3],
"pod": [3,0]
},
{
"data": ["You want me to go out to eat…", "Hey,", "This is a hotel!"],
"a": [3]
},
{
"data": ["Why are you asking me now!", "Hold on.", " I need to fix my makeup."],
"a": [3]
},
{
"data": ["This isn't a good time.", "It's already late.", "Did you make good plans already?"],
"a": [3],
"pod": [3,0]
},
{
"data": ["A date right now?", "What are you thinking about?", "I bet you're thinking about something else."],
"a": [3],
"pod": [3,0]
},
{
"data": ["It's already late.", "…For a little bit?", "Alright then."],
"a": [3],
"pod": [2,3,0]
},
{
"data": ["This late?", "I don't understand you at all.", "You're suspicious…"],
"a": [3]
},
{
"data": ["Umm, right now?", "It's gonna be late…", "Where do you want to go?"],
"a": [3]
},
{
"data": ["Can't go out on short notice like that.", "Sorry.", "Ask me again in 15 minutes."],
"a": [3]
},
{
"data": ["Where are you trying to take me?", "I'm sorry…", "But only for two hours."],
"a": [3]
},
{
"data": ["Good Morning.", "I guess we could go,", "Where are you taking me?"],
"a": [3],
"pod": [1]
},
{
"data": ["…Hey.", "A date?", "I just felt bad for you."],
"a": [3]
},
{
"data": ["What? A date?", "Where do I want to go..?", "I don’t know."],
"a": [3]
},
{
"data": ["Good Morning.", "I’m a little busy,", "so can we hurry?"],
"a": [3],
"pod": [1]
},
{
"data": ["What…? Hey.", "What are you doing..!", "Don’t you think it’s a little early for that?"],
"a": [3]
},
{
"data": ["Good Morning.", "A date? That’s very bold of you.", "Okay, I’ll take you up for it."],
"a": [3],
"pod": [1]
},
{
"data": ["…Hey.", "You have a lot of guts.", "Not enough for me, though."],
"a": [3]
},
{
"data": ["Hey!", "Are you taking me somewhere fun?", "I'm not expecting much."],
"a": [3]
},
{
"data": ["What do you think?", "I dressed up for you…", "Say something!"],
"a": [3]
},
{
"data": ["Hey.", "What are you looking at?", "Am I that cute?"],
"a": [3]
},
{
"data": ["So, what first?", "You asked me,", "So you have to make the plans."],
"a": [3]
},
{
"data": ["Huh, a date?", "…Why aren't you saying anything?", "Am I boring you?"],
"a": [3]
},
{
"data": ["Hey.", "You’re full of energy, aren’t you?", "Alright, let’s go."],
"a": [3]
},
{
"data": ["Hey!", "Are you asking me out on a date?", "You’re asking about 100 years too soon!"],
"a": [3]
},
{
"data": ["Uhm…", "If I say that I can't,", "Will you ask me out another time…?"],
"a": [3]
},
{
"data": ["Sorry.", "I can't right now.", "Can you wait an hour?"],
"a": [3],
"pod": [1,2]
},
{
"data": ["Hey! Nice morning, isn’t it?", "You want ME to go with you?", "I might get hopeful!"],
"a": [3],
"pod": [1]
},
{
"data": ["Hey, good morning.", "A date already?", "You’re inpatient, huh."],
"a": [3],
"pod": [1]
},
{
"data": ["Good Morning!", "A date? This early in the morning?", "That’s quite a surprise."],
"a": [3],
"pod": [1]
},
{
"data": ["Oh…good morning.", "Really? Already?", "I’m excited."],
"a": [3],
"pod": [1]
},
{
"data": ["Good Morning.", "You want me to go out with you?", "I think that crosses the line."],
"a": [3],
"pod": [1]
},
{
"data": ["…Hello.", "…(Nervous)", "I'm not nervous if I'm not holding hands."],
"a": [3]
},
{
"data": ["…Hello.", "Do you think,", "We look like we're dating?"],
"a": [3]
},
{
"data": ["…Hello.", "I've been looking forward to this.", "Alright, do you want to go?"],
"a": [3]
},
{
"data": ["…Hello.", "Do you have time today?", "We can be together all day?"],
"a": [3]
},
{
"data": ["…Hey.", "I'm really nervous.", "But I was still looking forward to it!"],
"a": [3]
},
{
"data": ["Um…", "A date this late.", "That limits where we would go."],
"a": [3]
},
{
"data": ["Good Morning.", "Hey…", "Don’t touch me like that, okay?"],
"a": [10,11,12],
"pod": [1]
},
{
"data": ["Ah, that feels really good.", "But…", "Your hands are moving kind of weird."],
"a": [20]
},
{
"data": ["You’re petting me…", "Like a kid again.", "I don’t mind though."],
"a": [20]
},
{
"data": ["…More.", "Til I open my eyes…", "…"],
"a": [20]
},
{
"data": ["I…", "I feel like my body’s melting…", "It feels good…"],
"a": [20, 21]
},
{
"data": ["I want you to…", "Keep petting me like this…", "But I have to go."],
"a": [20, 21]
},
{
"data": ["You know,", "I actually like it…", "Your hands, they’re warm…"],
"a": [20,21]
},
{
"data": ["When you do that…", "It’s really comforting…", "I like it a lot…"],
"a": [20]
},
{
"data": ["Oh man.", "My hair is all messed up.", "I did it because I was seeing you."],
"a": [20,10,11,12]
},
{
"data": ["Hello!", "You petting my head is the best!", "It feels so good!"],
"a": [20,12]
},
{
"data": ["…", "That tickles.", "Is my heart beating really fast…?"],
"a": [20,21,12]
},
{
"data": ["Hello…", "Hehe, that feels nice.", "Can you do that more?"],
"a": [20,12]
},
{
"data": ["Hello…", "Hehe, that tickles…", "Do that more?"],
"a": [20,12]
},
{
"data": ["Hello!", "Your hands are really warm!", "Yeah, they're my favorite!"],
"a": [20,12,10]
},
{
"data": ["Hello…", "Your hands are really comforting.", "Keep doing that."],
"a": [20,12,10]
},
{
"data": ["Hello!", "Haha, will you do that more?", "I might melt!"],
"a": [20,10]
},
{
"data": ["…", "I love it.", "I want to do that to you, too."],
"a": [20,21,12,10]
},
{
"data": ["…Hi.", "Those hands of yours…", "I love it…"],
"a": [20,12,10,21]
},
{
"data": ["Hello.", "Are you gonna pet me?", "I'll do it to you too. I'll charge you up!"],
"a": [20]
},
{
"data": ["…Oh, no.", "I'm so happy, my heart's going crazy.", "That's never happened before."],
"a": [20]
},
{
"data": ["Hello!", "Hehe, thanks!", "I think I'll have a great day today!"],
"a": [20]
},
{
"data": ["Hello…", "That makes me warm up.", "My heart, too."],
"a": [20]
},
{
"data": ["…", "Don't play around with me.", "Do you like watching me get excited?"],
"a": [20]
},
{
"data": ["Hello…", "Finally I get to see you…!", "I hate not being with you."],
"a": [20]
},
{
"data": ["Hello!", "Hehe, do it more!", "You're charging me up!"],
"a": [20]
},
{
"data": ["Hello.", "You have big hands. Is it bigger than mine?", "Yeah, it's really big."],
"a": [20]
},
{
"data": ["Hello.", "Your hands, they're really warm.", "This is really nice!"],
"a": [20,12,10]
},
{
"data": ["Alright…", "Did you want to touch me?", "I'm not feeling like it right now."],
"a": [10,11,12]
},
{
"data": ["You know…", "Can you stop that?", "I'm not that kind of girl."],
"a": [10,11,12,21]
},
{
"data": ["Hey…", "When did you start petting me?", "I never know what to expect from you."],
"a": [10,11,12]
},
{
"data": ["Hey…", "Seems like you're used to doing this.", "Hmmm."],
"a": [10,11,12]
},
{
"data": ["…!", "You're pretty bold, aren't you?", "Our hearts are beating really fast."],
"a": [21]
},
{
"data": ["…!", "That was a surprise, but I don't mind.", "Your hands, they feel really good."],
"a": [20,21]
},
{
"data": ["The usual?", "It comforts me when you do that.", "I'll do it to you, too."],
"a": [20]
},
{
"data": ["Keep doing that for a bit…", "When you pet me,", "It comforts me a lot."],
"a": [20,12]
},
{
"data": ["Your warmth…", "It spreads through my body.", "And then I get really comfortable."],
"a": [20]
},
{
"data": ["That feels really good.", "The warmth from your hands.", "My loneliness is disappearing."],
"a": [20]
},
{
"data": ["When you gently pet me like that…", "I feel like my heart's floating around.", "I don't feel like myself."],
"a": [20,10]
},
{
"data": ["Hey.", "You're a little tense.", "Are you imagining stuff?"],
"a": [20]
},
{
"data": ["I still get jolted…", "Because it's you.", "I want to stay like this for a while."],
"a": [20]
},
{
"data": ["That feels really really good.", "I'm getting sleepy!", "Wake me up!"],
"a": [20,11]
},
{
"data": ["Hey.", "Keep petting me for a while.", "It's comforting."],
"a": [20]
},
{
"data": ["Your hands, they're really hot.", "I think that heat is making me hot.", "My body is getting really hot."],
"a": [20]
},
{
"data": ["I really missed you.", "It was only for a little bit.", "I'm really comfortable right now."],
"a": [20,12]
},
{
"data": ["When you pet me,", "I feel like I'm floating.", "It's warm and feels really good."],
"a": [20]
},
{
"data": ["Hm?", "Your hands are acting suspicious.", "What are you thinking about?"],
"a": [20]
},
{
"data": ["Where you're touching,", "I can feel how hot your hands are.", "I'm getting hot too…"],
"a": [20]
},
{
"data": ["I think your heat is getting to me.", "I'm getting hot too.", "What do I do?"],
"a": [20]
},
{
"data": ["When you do that…", "I can be honest with myself.", "It's a healing hand, huh?"],
"a": [20]
},
{
"data": ["Keep doing that…", "Until I tell you to stop.", "It's really comforting."],
"a": [20,11]
},
{
"data": ["I'm getting lightheaded.", "I've never felt like this before.", "Is this what love feels like?"],
"a": [20]
},
{
"data": ["When you pet me…", "It calms me down a lot.", "It feels weird."],