-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaydeewa_subterrane.json
5885 lines (5786 loc) · 214 KB
/
aydeewa_subterrane.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
{
"id": 68,
"name": "Aydeewa Subterrane",
"actors": [
{
"id": 17056374,
"name": "",
"events": [
{
"id": 35,
"dialogue": [
{
"id": 6355,
"string": "1\u0000\u0007The shared memories of generations of mooglekind flood into your mind, granting you the ability to decipher the cryptic glyphs of your \u0001\u00053????..."
},
{
"id": 6356,
"string": "1\u0000\u0007Review which trial?\u0007\u000bTrial \n\u0000.\u0007Trial \n\u0001.\u0007Trial \n\u0002.\u0007Trial \n\u0003.\u0007Trial \n\u0004.\u0007Trial \n\u0005.\u0007Trial \n\u0006.\u0007Trial \n\u0007.\u0007Trial \n\b.\u0007Trial \n\t.\u0007Moogle's Almanack.\u0007Return."
},
{
"id": 6361,
"string": "1\u0000\u0007You open the tome to the ??Moogle's Almanack?? chapter and peruse its weather prognostication pages."
},
{
"id": 6371,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017????."
},
{
"id": 6368,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017????. There is also the possibility of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6365,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6362,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017???? with occasional \u0001\u0005\u0018????. There is also a slight chance of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6372,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017????."
},
{
"id": 6369,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017????. There is also the possibility of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6366,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6363,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017???? with occasional \u0001\u0005\u0018????. There is also a slight chance of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6373,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018????."
},
{
"id": 6370,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018????. There is also the possibility of \u0001\u0005\u0018????, so caution is advised."
},
{
"id": 6367,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6364,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018???? with occasional \u0001\u0005\u0018????. There is also a slight chance of \u0001\u0005\u0018????, so caution is in order."
}
]
}
]
},
{
"id": 17056391,
"name": "Ramblix",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7328,
"string": "1\u0000\u0007Oh my Gob! You're one of those adventurerurers, aren't ya?\u0007You got nothin' on me, ?[man.\/lady.] I was just mindin' my own businesesess, lookin' for junk an' stuff."
},
{
"id": 7329,
"string": "1\u0000\u0007Hey, watch out. You don't wanna fight me. I'll turn you into meat jerky!\u0007Wait, how about you and me be friends instead? Sound good?"
},
{
"id": 7330,
"string": "1\u0000\u0007I travel all over the world and hear lots of differererent stories. I even hear your stories. I can tell you one, if you want."
},
{
"id": 7338,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 7339,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007Get the Picture.\u0007An Empty Vessel(pt.1).\u0007An Empty Vessel(pt.2).\u0007What Friends Are For(pt.1).\u0007What Friends Are For(pt.2).\u0007Omens.\u0007Finders Keepers(pt.1).\u0007Finders Keepers(pt.2).\u0007Bastion of Knowledge.\u0007Soothing Waters."
},
{
"id": 7332,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7340,
"string": "1\u0000\u0007"
},
{
"id": 7332,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7341,
"string": "1\u0000\u0007"
},
{
"id": 7332,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7342,
"string": "1\u0000\u0007"
},
{
"id": 7332,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7332,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7331,
"string": "1\u0000\u0007Now, listen close..."
}
]
}
]
},
{
"id": 17056393,
"name": "???",
"events": [
{
"id": 3,
"dialogue": [
{
"id": 7343,
"string": "1\u0000\u0007Ah...\u0007The new potential..."
}
]
},
{
"id": 4,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
{
"id": 7443,
"string": "1\u0000\u0007<Burooroon>..."
},
{
"id": 7444,
"string": "1\u0000\u0007<Burooroon...rooroon>..."
},
{
"id": 7445,
"string": "1\u0000\u0007Ahahaha!\u0007Sooo luckeee luckeee!"
},
{
"id": 7446,
"string": "1\u0000\u0007<Burooroonrooroon>..."
}
]
},
{
"id": 11,
"dialogue": [
{
"id": 7605,
"string": "1\u0000\u0007We gotta hurry, Boss!\u0007There are lotsa people headed this way."
},
{
"id": 7606,
"string": "1\u0000\u0007Yes...\u0007Noticed, we have."
},
{
"id": 7607,
"string": "1\u0000\u0007They're here!"
},
{
"id": 7608,
"string": "1\u0000\u0007Grand Vizier!"
},
{
"id": 7609,
"string": "1\u0000\u0007She is safe!"
}
]
},
{
"id": 34,
"dialogue": [
{
"id": 7700,
"string": "1\u0000\u0007Don't move a muscle..."
}
]
}
]
},
{
"id": 17056394,
"name": "",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
},
{
"id": 34,
"dialogue": [
]
}
]
},
{
"id": 17056395,
"name": "",
"events": [
{
"id": 3,
"dialogue": [
{
"id": 7355,
"string": "1\u0000\u0007Take his hand?\u0007\u000bYes.\u0007I don't think so..."
},
{
"id": 7361,
"string": "1\u0000\u0007Do you truly take his hand?\u0007\u000bYes!\u0007I've changed my mind."
},
{
"id": 7376,
"string": "1\u0000\u0007"
},
{
"id": 7358,
"string": "1\u0000\u0007Any regrets?\u0007\u000bNone.\u0007Maybe..."
},
{
"id": 7359,
"string": "1\u0000\u0007No regrets at all?\u0007\u000bNone!\u0007Wait!"
},
{
"id": 7376,
"string": "1\u0000\u0007"
}
]
},
{
"id": 4,
"dialogue": [
{
"id": 7375,
"string": "1\u0000\u0007You obtain the \u0001\u00053????.\u0007You can now become a blue mage!"
},
{
"id": 6391,
"string": "l.\u0000\u0007Obtained key item: ?\u0001\u0001\u00053????."
}
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
{
"id": 7395,
"string": "1\u0000\u0007\u001f\u000f\b sets the \u0001\u00053???? on the groun"
},
{
"id": 7376,
"string": "1\u0000\u0007"
},
{
"id": 7400,
"string": "4\u0001\u0000\u0007You see a roll of parchment in Wawaroon's bag."
},
{
"id": 7401,
"string": "1\u0000\u0007Take the parchment?\u0007\u000bYes!\u0007I am no thief."
},
{
"id": 7402,
"string": "1\u0000\u0007You rummage through Wawaroon's bag..."
},
{
"id": 7403,
"string": "1\u0000\u0007At least he is still breathing."
}
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
{
"id": 7376,
"string": "1\u0000\u0007"
},
{
"id": 7376,
"string": "1\u0000\u0007"
},
{
"id": 7376,
"string": "1\u0000\u0007"
}
]
},
{
"id": 12,
"dialogue": [
]
}
]
},
{
"id": 17056396,
"name": "???",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7365,
"string": "1\u0000\u0007Hmph. ?[His\/Her] answers were not entirely truthful."
},
{
"id": 7366,
"string": "1\u0000\u0007You were the one who transplanted this!"
},
{
"id": 7367,
"string": "1\u0000\u0007This...6\u0002\u0007...loathsome Ahriman lens!"
}
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
}
]
},
{
"id": 17056397,
"name": "???",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7363,
"string": "1\u0000\u0007...\u0007The potential is ready for your inspection."
},
{
"id": 7364,
"string": "1\u0000\u0007?[His\/Her] cobalt levels were very low, and I was afraid this would be another failure. But ?[he\/she] somehow clawed ?[his\/her] way back from the edge of death."
}
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
}
]
},
{
"id": 17056398,
"name": "???",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
}
]
},
{
"id": 17056399,
"name": "Yasfel",
"events": [
{
"id": 3,
"dialogue": [
{
"id": 7344,
"string": "1\u0000\u0007I am Yasfel of the Immortals."
},
{
"id": 7345,
"string": "1\u0000\u0007I regret to inform you that the \u0001\u0005#???? you have brought me was nothing more than a ruse."
},
{
"id": 7346,
"string": "1\u0000\u0007We merely wished to test the limits of your innermost desire for power."
},
{
"id": 7347,
"string": "1\u0000\u0007Yes...\u0007We needed to gauge your ??suitability??..."
},
{
"id": 7348,
"string": "1\u0000\u0007You undertook what was, in essence, an unreasonable request, and completed the task admirably.\u0007Such commitment is worthy of praise..."
},
{
"id": 7349,
"string": "1\u0000\u0007But it all comes back to your search for power..."
},
{
"id": 7350,
"string": "1\u0000\u0007I stand before you as one who holds the only key to unlocking your potential."
},
{
"id": 7351,
"string": "1\u0000\u0007Naturally, this power comes at a price.\u0007Something precious will be lost to you."
},
{
"id": 7352,
"string": "1\u0000\u0007Though you may not even notice it is missing..."
},
{
"id": 7353,
"string": "1\u0000\u0007If you are willing to pay the price...6\u0003\u0007If you truly desire the power that a blue mage wields..."
},
{
"id": 7354,
"string": "1\u0000\u0007Take my hand..."
},
{
"id": 7362,
"string": "1\u0000\u0007Your life...6\u0002\u0007...now belongs to the Empress and the Empire..."
},
{
"id": 7356,
"string": "1\u0000\u0007You choose the safer path.\u0007So be it..."
},
{
"id": 7357,
"string": "1\u0000\u0007I will ask you one more question.6\u0002\u0007Do you feel any regrets in your decision?"
},
{
"id": 7360,
"string": "1\u0000\u0007This was all nothing more than an unrealized dream.6\u0002\u0007Return...\u0007Return to your safe, familiar world..."
}
]
},
{
"id": 4,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
}
]
},
{
"id": 17056400,
"name": "Raubahn",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7369,
"string": "..\u0000\u0007Congratulations, \b.\u0007Welcome to the ranks of the blue mages."
},
{
"id": 7370,
"string": "1\u0000\u0007However, at this moment you are but an empty vessel--a base creature, weaker than the most ordinary mortal."
},
{
"id": 7371,
"string": "1\u0000\u0007A blue mage must wrest ?[his\/her] strength and vitality from ?[his\/her] enemies."
},
{
"id": 7372,
"string": "1\u0000\u0007Show me your hunger for unrivaled power!"
},
{
"id": 7373,
"string": "1\u0000\u0007This is the only guidance I shall give you."
}
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
},
{
"id": 34,
"dialogue": [
{
"id": 7756,
"string": "1\u0000\u0007Weren't you supposed to be off this investigation, General Rughadjeen?"
},
{
"id": 7760,
"string": "1\u0000\u0007Very observant.\u0007Our killer is becoming bolder with each new victim...but this has also helped us create a more solid profile."
},
{
"id": 7762,
"string": "1\u0000\u0007It is likely.\u0007The former Grand Vizier was also once the governor-general for the southern nations."
},
{
"id": 7763,
"string": "1\u0000\u0007Of particular note is his enactment of a new agricultural land law in Tsahya that led to large swathes of property being seized from wealthy farming families..."
},
{
"id": 7764,
"string": "1\u0000\u0007...and the resulting deaths to starvation when the newly imposed plantations failed."
},
{
"id": 7766,
"string": "1\u0000\u0007Dissidents were ruthlessly suppressed.\u0007Heavy taxes were levied, and reparations paid for losses.\u0007On the books, he appears compassionate and efficient."
},
{
"id": 7767,
"string": "1\u0000\u0007The facts at hand suggest our murderer is a member of the Tsahyan Freedom Fighters."
},
{
"id": 7769,
"string": "1\u0000\u0007Apparently some of the rats survived."
},
{
"id": 7770,
"string": "1\u0000\u0007Only an assassin trained by the Freedom Fighters would have the requisite skill to calculate the speed of a walking man and remove his head with a throwing disc..."
},
{
"id": 7772,
"string": "1\u0000\u0007The present Grand Vizier is away from the capital on a tour of inspection.\u0007Which leaves the killer with a choice between a member of the Imperial family or the Empress Herself."
},
{
"id": 7774,
"string": "1\u0000\u0007That will not be necessary.\u0007The Immortals have an impenetrable security net."
},
{
"id": 7775,
"string": "1\u0000\u0007Not even the famed ninja of the East could slip in unnoticed."
},
{
"id": 7777,
"string": "1\u0000\u0007The Empress will be present to award a student with the Walahra Scholarship."
},
{
"id": 7778,
"string": "1\u0000\u0007However, the only other attendees will be a single tutor and several youths from the temple.\u0007There are no surging crowds in which an assassin could hide."
},
{
"id": 7780,
"string": "1\u0000\u0007You have a point.\u0007But I ask you to entrust the security of the palace grounds to the Immortals."
},
{
"id": 7798,
"string": "t!\u0000\u0007!?"
},
{
"id": 7800,
"string": "1\u0000\u0007Compose yourself!\u0007It is only an irritant."
},
{
"id": 7801,
"string": "1\u0000\u0007Empress! Your Magnificence!"
},
{
"id": 7804,
"string": "1\u0000\u0007(The temple...? You've got a lot to answer for, Rughadjeen!)"
},
{
"id": 7856,
"string": "..\u0000\u0007I've seen enough of your incompetence, General Rughadjeen."
},
{
"id": 7858,
"string": "1\u0000\u0007All four of the generals in charge of the defense of the city couldn't apprehend a single girl...?"
},
{
"id": 7861,
"string": "1\u0000\u0007As was ours, I'm afraid to say.\u0007I never considered our charge would be outside the palace."
},
{
"id": 7862,
"string": "1\u0000\u0007The Immortals will take responsibility for processing this crime.\u0007What is the punishment for high treason?"
},
{
"id": 7864,
"string": "1\u0000\u0007Proceed!"
},
{
"id": 7870,
"string": "1\u0000\u0007A friend, you say?"
},
{
"id": 7877,
"string": "1\u0000\u0007..."
},
{
"id": 7881,
"string": "1\u0000\u0007There is still the matter of--"
},
{
"id": 7883,
"string": "1\u0000\u0007..."
},
{
"id": 7885,
"string": "1\u0000\u0007Understood."
}
]
}
]
},
{
"id": 17056401,
"name": "Luqrabah",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
}
]
},
{
"id": 17056402,
"name": "Wathdeeh",
"events": [
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7374,
"string": "1\u0000\u0007If you prove your worth, you may one day find a place among the Immortals."
}
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
}
]
},
{
"id": 17056403,
"name": "Wawaroon",
"events": [
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
{
"id": 7396,
"string": "d.\u0000\u0007Hooo?`! What is this wooonderful wooonderful smell?"
},
{
"id": 7397,
"string": "1\u0000\u0007Nooone here?\u0007...Is here?\u0007...Nooo here?"
},
{
"id": 7398,
"string": "1\u0000\u0007Nooo here, hohoho!6\u0001\u0007Stooo from the roooins...for Wawaroon! Time for a feast!"
}
]
},
{
"id": 10,
"dialogue": [
{
"id": 7449,
"string": "1\u0000\u0007Ahahahaha!\u0007Buroonburoon Network.\u0007Member Twenteee Four.\u0007Wawaroon."
},
{
"id": 7450,