-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDota2_group.json
More file actions
6002 lines (6002 loc) · 127 KB
/
Dota2_group.json
File metadata and controls
6002 lines (6002 loc) · 127 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
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
[
{
"userId": 1,
"text": "Outta my face. You're blocking my view."
},
{
"userId": 1,
"text": "Shut up!!! Stop talking. Just go the hell away!"
},
{
"userId": 1,
"text": "All the world needs is me. I got my values... so you can keep yours"
},
{
"userId": 1,
"text": "I don't get people. Never have. Never will."
},
{
"userId": 1,
"text": "?"
},
{
"userId": 1,
"text": "!? What the... I can hear voices in my head! (What just happened?)"
},
{
"userId": 1,
"text": "(And where'd this pin come from?) Hmm... (Wonder if there's a"
},
{
"userId": 1,
"text": "(This pin... Why do I have it?)"
},
{
"userId": 1,
"text": "(Voices! Definitely voices! But why?) ! (Am I hearing people's"
},
{
"userId": 1,
"text": "! Huh? Whose phone? Mine? \"\"Reach 104. You have 60 minutes. Fail"
},
{
"userId": 1,
"text": "Huh? Still there... It's like junk mail from hell."
},
{
"userId": 1,
"text": "Oww! My hand... Huh?"
},
{
"userId": 1,
"text": "!? What?"
},
{
"userId": 1,
"text": "! F...frogs!?"
},
{
"userId": 1,
"text": "Oww! What the... They attacked me! What do they want with me? D-down"
},
{
"userId": 1,
"text": "...Ungh! What the hell is going on!? Somebody! Help!"
},
{
"userId": 1,
"text": "Hey... Everybody stop ignoring me! What is this place..."
},
{
"userId": 1,
"text": "Crap! I gotta run!"
},
{
"userId": 2,
"text": "Man"
},
{
"userId": 3,
"text": "Stop whining. We haven't had work in"
},
{
"userId": 2,
"text": "Exactly. It feels like the Monday after vacation."
},
{
"userId": 3,
"text": "You'd prefer a permanent vacation? Day 1 has the most Players. Now's"
},
{
"userId": 2,
"text": "Aight"
},
{
"userId": 3,
"text": "A gaaame?"
},
{
"userId": 2,
"text": "Yeah"
},
{
"userId": 3,
"text": "Oh"
},
{
"userId": 2,
"text": "How 'bout Reaper Sport 3"
},
{
"userId": 3,
"text": "Are you joking? That's no fun at all!"
},
{
"userId": 2,
"text": "You don't like it?"
},
{
"userId": 3,
"text": "But I'm gonna crush you! There's no contest."
},
{
"userId": 2,
"text": "Ohh"
},
{
"userId": 1,
"text": "Huff"
},
{
"userId": 1,
"text": "Rrgh... Freakin' frogs! Just leave me alone! I didn't do anything to"
},
{
"userId": 1,
"text": "!? They vanished! Why are people disappearing!? What's happening... Why"
},
{
"userId": 1,
"text": "They're gonna get me..."
},
{
"userId": 1,
"text": "Huh?"
},
{
"userId": 4,
"text": "You! Forge a pact with me!"
},
{
"userId": 1,
"text": "Uhh... I've kinda got my hands full..."
},
{
"userId": 4,
"text": "Listen! If we forge a pact"
},
{
"userId": 1,
"text": "Who cares about a little noise?"
},
{
"userId": 4,
"text": "You wanna be erased? Hurry up! There's no time! Make a pact with me!"
},
{
"userId": 1,
"text": "A-all right! I accept."
},
{
"userId": 1,
"text": "What's with the lights show?"
},
{
"userId": 4,
"text": "Here!"
},
{
"userId": 4,
"text": "Use this pin!"
},
{
"userId": 1,
"text": "But...the funny lights..."
},
{
"userId": 4,
"text": "I'll explain later! Right now we have to stop the Noise!"
},
{
"userId": 1,
"text": "Uhh...OK?"
},
{
"userId": 4,
"text": "Get ready!"
},
{
"userId": 1,
"text": "That fire... I did that!?"
},
{
"userId": 4,
"text": "Whoa! You can use the pin? You must be really good at psychs. Guess I"
},
{
"userId": 1,
"text": "That's what you call those flames? A psych?"
},
{
"userId": 4,
"text": "Yup. And now that we've made a pact"
},
{
"userId": 1,
"text": "In other words"
},
{
"userId": 4,
"text": "Right. See? All gone."
},
{
"userId": 1,
"text": "All gone. So...What are Noise?"
},
{
"userId": 4,
"text": "They're the monsters we just fought. Duh."
},
{
"userId": 1,
"text": "(Monsters? Uh"
},
{
"userId": 1,
"text": "(Is that what this pin is for?)"
},
{
"userId": 4,
"text": "Anyway"
},
{
"userId": 1,
"text": "(I call this wack.)"
},
{
"userId": 4,
"text": "We've got a long week ahead of us!"
},
{
"userId": 1,
"text": "A week? Week of what?"
},
{
"userId": 4,
"text": "The Reapers' Game is seven days long"
},
{
"userId": 1,
"text": "(Reapers? Excuse me? Who is this flake?)"
},
{
"userId": 4,
"text": "So what's your name?"
},
{
"userId": 1,
"text": "(Forget her... Where am I? How did I get here?)"
},
{
"userId": 4,
"text": "C'mon"
},
{
"userId": 1,
"text": "(The sign says \"\"Shibuya Station\"\"... Why am I in Shibuya?)"
},
{
"userId": 4,
"text": "Something wrong?"
},
{
"userId": 1,
"text": "(Wait... The intersection. I just need to retrace my steps.)"
},
{
"userId": 4,
"text": "! Hey"
},
{
"userId": 1,
"text": "Why are you following me!?"
},
{
"userId": 4,
"text": "Why are you making yourself so hard to follow?"
},
{
"userId": 1,
"text": "Screw you. I go where I want."
},
{
"userId": 4,
"text": "Go where? We're trapped in here!"
},
{
"userId": 1,
"text": "What? Don't be stupid."
},
{
"userId": 4,
"text": "You're the one being stupid. We made a pact. We're supposed to stick"
},
{
"userId": 1,
"text": "Survive what?"
},
{
"userId": 4,
"text": "The Game! Don't you wanna win?"
},
{
"userId": 1,
"text": "Pfft. Play games on your own time."
},
{
"userId": 4,
"text": "Hey! That's not funny! They'll erase us if we don't win! You saw what"
},
{
"userId": 1,
"text": "No way! Don't make me a part of this."
},
{
"userId": 4,
"text": "You're already a part of this. You're a Player"
},
{
"userId": 1,
"text": "A what? I'm not playing anything."
},
{
"userId": 4,
"text": "Oh yeah? Then why do you have a Player Pin?"
},
{
"userId": 4,
"text": "Don't you have a timer on your hand? I do..."
},
{
"userId": 1,
"text": "What. The. Hell."
},
{
"userId": 4,
"text": "See"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 4,
"text": "! We don't have time for this! The clock's ticking! We've only got 20"
},
{
"userId": 1,
"text": "Ten-Four\"\"? What's that?"
},
{
"userId": 4,
"text": "Ten-Four! 104? You got the mail"
},
{
"userId": 1,
"text": "(That junk mail...Please. What kind of nut would believe that? Then"
},
{
"userId": 4,
"text": "Good. Now"
},
{
"userId": 1,
"text": "...... Neku. Neku Sakuraba."
},
{
"userId": 4,
"text": "Neku"
},
{
"userId": 1,
"text": "(Shut up.)"
},
{
"userId": 4,
"text": "All right"
},
{
"userId": 4,
"text": "Hey"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 4,
"text": "We have to get over to 104. There's no time!"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 4,
"text": "Hey- wait up!!! Neku..."
},
{
"userId": 4,
"text": "I told you! We can't leave!"
},
{
"userId": 1,
"text": "Oh"
},
{
"userId": 1,
"text": "Durff! You gotta be kidding me!"
},
{
"userId": 4,
"text": "Next time"
},
{
"userId": 1,
"text": "So this is all part of that \"\"Reapers' Game\"\"?"
},
{
"userId": 4,
"text": "That's right."
},
{
"userId": 1,
"text": "(This is nuts. She's actually telling the truth? Then that"
},
{
"userId": 4,
"text": "Neku! Move! We have to get to Ten-Four!"
},
{
"userId": 1,
"text": "Oww! It's blocked! There's no way past!"
},
{
"userId": 4,
"text": "We can't get through!? But this is the way to Ten-Four!"
},
{
"userId": 1,
"text": "...... (Why do I feel like I'm being watched? That guy over there."
},
{
"userId": 5,
"text": "Pact confirmed."
},
{
"userId": 4,
"text": "What are we gonna do about this wall? [walks past Neku] Huh? Neku!"
},
{
"userId": 1,
"text": "? What's up with that?"
},
{
"userId": 4,
"text": "No idea. A lucky break"
},
{
"userId": 1,
"text": "(Something about that guy in red...) ! (Huh? Where'd he go? Weird.)"
},
{
"userId": 4,
"text": "Made it!"
},
{
"userId": 1,
"text": "The timer vanished!"
},
{
"userId": 4,
"text": "Whew! Mission complete."
},
{
"userId": 1,
"text": "!?"
},
{
"userId": 1,
"text": "What!?"
},
{
"userId": 3,
"text": "Only an idiot would screw up on Day 1."
},
{
"userId": 1,
"text": "Who's there!?"
},
{
"userId": 4,
"text": "Oh"
},
{
"userId": 1,
"text": "Reaper..."
},
{
"userId": 3,
"text": "You two are gonna get erased sooner or later. So come on. Help a girl"
},
{
"userId": 1,
"text": "Those monsters again..."
},
{
"userId": 4,
"text": "Neku"
},
{
"userId": 1,
"text": "What? Fight your own battles!"
},
{
"userId": 4,
"text": "Please! To stop the Noise!"
},
{
"userId": 1,
"text": "...Fine. Come on!"
},
{
"userId": 4,
"text": "Good! Now we can fight together! We can beat the Noise faster as a"
},
{
"userId": 1,
"text": "Is it over?"
},
{
"userId": 4,
"text": "Not yet"
},
{
"userId": 1,
"text": "(Whew... This one looks though. ...Like I've got a choice.) Hey!"
},
{
"userId": 4,
"text": "I'm not a stalker!"
},
{
"userId": 1,
"text": "Whatever. Just... Don't mess this up!"
},
{
"userId": 4,
"text": "I...I won't!"
},
{
"userId": 4,
"text": "Whew... We did it... But you heard her... Day 1 is nothing. What if"
},
{
"userId": 1,
"text": "(I can't believe this... Why am I stuck here? What if I'm erased!? What"
},
{
"userId": 6,
"text": "Reapers' Game. Chapter Closed]"
},
{
"userId": 1,
"text": "Nngh... ! Where am I now?"
},
{
"userId": 4,
"text": "...I hope this works out."
},
{
"userId": 1,
"text": "Hey!"
},
{
"userId": 4,
"text": "Aaack! Don't scare me like that!"
},
{
"userId": 1,
"text": "(Grow up. You're obnoxious...)"
},
{
"userId": 4,
"text": "Umm...Is something wrong?"
},
{
"userId": 1,
"text": "Where are we?"
},
{
"userId": 4,
"text": "Isn't this the underpass by the station? I can hear the trains."
},
{
"userId": 1,
"text": "(That's weird. How'd we get here?)"
},
{
"userId": 4,
"text": "There's the mission!"
},
{
"userId": 4,
"text": "Set the cursed sculpture free. You have 60 minutes. Fail"
},
{
"userId": 4,
"text": "Oww!"
},
{
"userId": 1,
"text": "Timer's back. What's it for?"
},
{
"userId": 4,
"text": "The mission. ...You really don't know? If we don't clear the mission"
},
{
"userId": 1,
"text": "(Sounds crazy to me. But...maybe not that crazy. I saw it happen to"
},
{
"userId": 1,
"text": "Why'd the date change on my phone?"
},
{
"userId": 4,
"text": "A day must have gone by."
},
{
"userId": 1,
"text": "What!?"
},
{
"userId": 4,
"text": "I think we fell asleep after the mission. But that's OK. We need to"
},
{
"userId": 1,
"text": "(Have you lost your MIND? It's anything but OK! We were in the middle"
},
{
"userId": 4,
"text": "So...this \"\"cursed sculpture\"\"-- it's gotta be talking about the statue "
},
{
"userId": 1,
"text": "(Maybe we passed out. And then...woke up here? Everything between is a"
},
{
"userId": 4,
"text": "But then what's the curse? ...Neku?"
},
{
"userId": 1,
"text": "(Did somebody drag us here? Or--)"
},
{
"userId": 4,
"text": "C'mon"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 4,
"text": "Hey! What"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 4,
"text": "You don't have to be like this. Sigh... What am I doing wrong? ......"
},
{
"userId": 4,
"text": "The \"\"cursed sculpture\"\" must be Hachiko. It's the most famous"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 5,
"text": "......"
},
{
"userId": 1,
"text": "Where have I seen this guy before..."
},
{
"userId": 4,
"text": "Neku! Hachiko is this way!"
},
{
"userId": 1,
"text": "(......)"
},
{
"userId": 4,
"text": "Come ON!"
},
{
"userId": 1,
"text": "(Ugh... Go yourself.)"
},
{
"userId": 1,
"text": "Oww!"
},
{
"userId": 4,
"text": "What? Another wall!?"
},
{
"userId": 1,
"text": "(So now we're trapped in here.)"
},
{
"userId": 4,
"text": "No... We'll never finish the mission now."
},
{
"userId": 1,
"text": "(All she ever does is whine...) ...Why not?"
},
{
"userId": 4,
"text": "Because this is the way to Hachiko."
},
{
"userId": 1,
"text": "(Then we have to get through. We got past the wall yesterday. Is there"
},
{
"userId": 4,
"text": "What should we do?"
},
{
"userId": 1,
"text": "......"
},
{
"userId": 4,
"text": "Don't just stand there. Think of something!"
},
{
"userId": 1,
"text": "(I AM thinking. Maybe if for just one minute you could stop your bi--"
},
{
"userId": 4,
"text": "Neku"
},
{
"userId": 5,
"text": "......"
},
{
"userId": 1,
"text": "(That guy in the red hoodie. I've seen him before.)"
},
{
"userId": 4,
"text": "Neku. What are you looking at? That guy... You know him?"
},
{
"userId": 1,
"text": "(I remember... He was at the crossing yesterday"
},
{
"userId": 1,
"text": "Something about that guy in red... I'm gonna scan him and see"
},
{
"userId": 1,
"text": "[tries to scan the Reaper] ? Hmph."
},
{
"userId": 4,
"text": "What is it?"
},
{
"userId": 1,
"text": "I can't read him."
},
{
"userId": 4,
"text": "What!? You can't scan him?"
},
{
"userId": 1,
"text": "(I had no trouble scanning people yesterday. Maybe the rules changed?)"
},
{
"userId": 7,
"text": "(Or maybe the pin is broken.)"
},
{
"userId": 4,
"text": "Can we finish the mission without being able to scan?"
},
{
"userId": 1,
"text": "(Hmm... What if it's just him? Maybe he's special.)"
},
{
"userId": 4,
"text": "Neku!"
},
{
"userId": 1,
"text": "(Ugh...) What now!?"
},
{
"userId": 4,
"text": "That guy is coming right towards us!"
},
{
"userId": 5,
"text": "You. Scan and erase all the Noise in this area."
},
{
"userId": 4,
"text": "Huh? What are you talking about?"
},
{
"userId": 1,
"text": "(Are those the conditions to move on?)"
},
{
"userId": 4,
"text": "I don't see any Noise!"
},
{
"userId": 5,
"text": "The world is more than just what you see. [he walks off]"
},
{
"userId": 4,
"text": "He left. What a creepy guy."
},
{
"userId": 1,
"text": "(I don't know what his deal is... But he's part of the Game"
},
{
"userId": 1,
"text": "(\"\"The world is more than just what you see.\"\" So to find the Noise...)"
},
{
"userId": 4,
"text": "How? They're not here!"
},
{
"userId": 1,
"text": "Yes they are. We have to scan for them."
},
{
"userId": 4,
"text": "You think? All right! Let's try it. But first... I meant to ask you."
},
{
"userId": 4,
"text": "Shouldn't you try some other pins? You've got more"
},
{
"userId": 1,
"text": "Pins?"
},
{
"userId": 4,
"text": "Yeah! They should've given you a whole bunch."
},
{
"userId": 1,
"text": "(You're right... In my pocket.)"
},
{
"userId": 4,
"text": "Why not test them out?"
},
{
"userId": 1,
"text": "How?"
},
{
"userId": 4,
"text": "Remember the flame pin yesterday?"
},
{
"userId": 1,
"text": "This one?"
},
{
"userId": 4,
"text": "Well"
},
{
"userId": 1,
"text": "I get it. Certain pins only work for certain people. I've got to try"
},
{
"userId": 1,
"text": "(We need to defeat some Noise to proceed. I can see 'em with"
},
{
"userId": 4,
"text": "Hey"
},
{
"userId": 4,
"text": "You were right. We have to scan to see the Noise."
},
{
"userId": 1,
"text": "(That takes care of them all.)"
},
{
"userId": 5,
"text": "Objective met."
},
{
"userId": 4,
"text": "But what about the wall? It's still-- Huh!? It's gone! Why?"
},
{
"userId": 1,
"text": "Because we took out the Noise."
},
{
"userId": 4,
"text": "So that's the trick to getting past the walls. But...that's odd."
},
{
"userId": 1,
"text": "What's odd?"
},
{
"userId": 4,
"text": "I heard you can only beat the Noise in pairs. But I fought them alone."
},
{
"userId": 1,
"text": "Hmm"
},
{
"userId": 4,
"text": "I couldn't see you while I was fighting."
},
{
"userId": 4,
"text": "!?"
},
{
"userId": 4,
"text": "Huh?"
},
{
"userId": 5,
"text": "The Noise exist simultaneously in two zones. And the only way to"
},
{
"userId": 4,
"text": "Wait"
},
{
"userId": 1,
"text": "(He knows too much... He must be one of them.)"
},
{
"userId": 4,
"text": "Well"
},
{
"userId": 1,
"text": "What?"