-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaltaieu.json
2883 lines (2774 loc) · 90.5 KB
/
altaieu.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": 33,
"name": "Al'Taieu",
"actors": [
{
"id": 16912884,
"name": "???",
"events": [
{
"id": 200,
"dialogue": [
{
"id": 7525,
"string": "1\u0000\u0007A distant voice emanates from the depths of your soul."
},
{
"id": 7526,
"string": "1\u0000\u0007??Knoweth...thou???"
},
{
"id": 7527,
"string": "1\u0000\u0007??Firs...irtue...??"
},
{
"id": 7528,
"string": "1\u0000\u0007??Deed...tranqu...ser...ity...??"
},
{
"id": 7529,
"string": "1\u0000\u0007??...receptac...from phua...??"
},
{
"id": 7530,
"string": "1\u0000\u0007??...I...cannot...deciph...them...??"
}
]
}
]
},
{
"id": 16912885,
"name": "???",
"events": [
{
"id": 201,
"dialogue": [
{
"id": 7531,
"string": "1\u0000\u0007A distant voice emanates from the depths of your soul."
},
{
"id": 7532,
"string": "1\u0000\u0007??Desssireth...thou???"
},
{
"id": 7533,
"string": "1\u0000\u0007??Ssseco...irtue...??"
},
{
"id": 7534,
"string": "1\u0000\u0007??Deed...ressstraint...willpo...er...??"
},
{
"id": 7535,
"string": "1\u0000\u0007??...from...fallen...Xzom...??"
},
{
"id": 7536,
"string": "1\u0000\u0007??...cannot...derssstand...them...??"
}
]
}
]
},
{
"id": 16912886,
"name": "???",
"events": [
{
"id": 202,
"dialogue": [
{
"id": 7537,
"string": "1\u0000\u0007A distant voice emanates from the depths of your soul."
},
{
"id": 7538,
"string": "1\u0000\u0007??Seeketh...thou???"
},
{
"id": 7539,
"string": "1\u0000\u0007??Thir...irtue...??"
},
{
"id": 7540,
"string": "1\u0000\u0007??Deed...rationa...??"
},
{
"id": 7541,
"string": "1\u0000\u0007??...receptac...from Hpem...??"
},
{
"id": 7542,
"string": "1\u0000\u0007??...cannot...omprehend...them...??"
}
]
}
]
},
{
"id": 16912887,
"name": "???",
"events": [
{
"id": 203,
"dialogue": [
{
"id": 7543,
"string": "1\u0000\u0007A distant voice emanates from the depths of your soul."
},
{
"id": 7544,
"string": "1\u0000\u0007??Now...I...know...??"
},
{
"id": 7545,
"string": "1\u0000\u0007??Fourt...irtue...??"
},
{
"id": 7546,
"string": "1\u0000\u0007??Fif...irtue...??"
},
{
"id": 7547,
"string": "1\u0000\u0007??Sssix...irtue...??"
},
{
"id": 7548,
"string": "1\u0000\u0007??I...desssire...??"
}
]
}
]
},
{
"id": 16912895,
"name": "",
"events": [
{
"id": 9,
"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": 16912898,
"name": "Crystalline Field",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 7308,
"string": "1\u0000\u0007Pass through the gate?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 163,
"dialogue": [
]
}
]
},
{
"id": 16912899,
"name": "Rubious Crystal",
"events": [
{
"id": 101,
"dialogue": [
]
},
{
"id": 163,
"dialogue": [
]
}
]
},
{
"id": 16912900,
"name": "Rubious Crystal",
"events": [
{
"id": 102,
"dialogue": [
]
},
{
"id": 163,
"dialogue": [
]
}
]
},
{
"id": 16912901,
"name": "Rubious Crystal",
"events": [
{
"id": 103,
"dialogue": [
]
},
{
"id": 163,
"dialogue": [
]
}
]
},
{
"id": 16912902,
"name": "Auroral Updraft",
"events": [
{
"id": 150,
"dialogue": [
{
"id": 7310,
"string": "1\u0000\u0007Return to the Sealion's Den?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912903,
"name": "Auroral Updraft",
"events": [
{
"id": 154,
"dialogue": [
{
"id": 7311,
"string": "1\u0000\u0007Return to the palace entrance?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912904,
"name": "Auroral Updraft",
"events": [
{
"id": 155,
"dialogue": [
{
"id": 7311,
"string": "1\u0000\u0007Return to the palace entrance?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912905,
"name": "Auroral Updraft",
"events": [
{
"id": 156,
"dialogue": [
{
"id": 7311,
"string": "1\u0000\u0007Return to the palace entrance?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912906,
"name": "Auroral Updraft",
"events": [
{
"id": 157,
"dialogue": [
{
"id": 7311,
"string": "1\u0000\u0007Return to the palace entrance?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912907,
"name": "Auroral Updraft",
"events": [
{
"id": 158,
"dialogue": [
{
"id": 7311,
"string": "1\u0000\u0007Return to the palace entrance?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912908,
"name": "Swirling Vortex",
"events": [
{
"id": 159,
"dialogue": [
{
"id": 7309,
"string": "1\u0000\u0007Enter the bottomless void?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912909,
"name": "Swirling Vortex",
"events": [
{
"id": 160,
"dialogue": [
{
"id": 7309,
"string": "1\u0000\u0007Enter the bottomless void?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912910,
"name": "Dimensional Portal",
"events": [
{
"id": 151,
"dialogue": [
{
"id": 7312,
"string": "1\u0000\u0007Return to the Crag of Holla?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912911,
"name": "Dimensional Portal",
"events": [
{
"id": 152,
"dialogue": [
{
"id": 7313,
"string": "1\u0000\u0007Return to the Crag of Dem?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912912,
"name": "Dimensional Portal",
"events": [
{
"id": 153,
"dialogue": [
{
"id": 7314,
"string": "1\u0000\u0007Return to the Crag of Mea?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16912914,
"name": "",
"events": [
]
},
{
"id": 16912915,
"name": "???",
"events": [
]
},
{
"id": 16912916,
"name": "",
"events": [
]
},
{
"id": 16912917,
"name": "Prishe",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7326,
"string": "1\u0000\u0007In other words, the crystal was losing the power it needed to sustain Al'Taieu in the other dimension."
},
{
"id": 7329,
"string": "1\u0000\u0007Yep.\u0007The weakened state of this overgrown quartz is the reason that the Keeper of the Apocalypse is threatening to descend upon Vana'diel."
},
{
"id": 7337,
"string": "1\u0000\u0007I'm sure you've noticed it by now, \b.\u0007Your ability to hear the whisper of the soul..."
},
{
"id": 7338,
"string": "1\u0000\u0007Passed through the medium of the amulet, the light gathered from the four crystals has changed you."
},
{
"id": 7347,
"string": "1\u0000\u0007Selh'teus!\u0007If you mean to save both the world and everyone in it, then someone inhuman like you or me should be sacrificed!"
},
{
"id": 7348,
"string": "1\u0000\u0007And you, Tenzen!\u0007Phoenix, the avatar of rebirth, can't have led you this far just to snuff out \b's life!"
},
{
"id": 7349,
"string": "1\u0000\u0007Surely she meant to resurrect the shattered pieces of \b's spirit using her own lifeforce!"
},
{
"id": 7350,
"string": "1\u0000\u0007I was the Keeper of the Apocalypse once.\u0007I know only too well the fear and horror that await us."
},
{
"id": 7351,
"string": "1\u0000\u0007But you gotta listen to me, Selh'teus!\u0007Pour the energy of the fifth mothercrystal into \b!"
},
{
"id": 7352,
"string": "1\u0000\u0007?[His\/Her] victories against the Emptiness and everything else we've faced have not been won through the power of the four crystals alone."
},
{
"id": 7353,
"string": "1\u0000\u0007\b has an inner strength.\u0007A spirit that loves this world and those who dwell upon it."
},
{
"id": 7354,
"string": "1\u0000\u0007That's why I believe ?[he\/she] will prevail against the keeper!"
},
{
"id": 7355,
"string": "1\u0000\u0007Selh'teus!\u0007Open the way to Al'Taieu!"
}
]
},
{
"id": 165,
"dialogue": [
]
},
{
"id": 166,
"dialogue": [
]
},
{
"id": 167,
"dialogue": [
{
"id": 7518,
"string": "e!\u0000\u0007Dammit...\u0007This is because of Nag'molada."
},
{
"id": 7519,
"string": "1\u0000\u0007When Naggy was absorbed, all of his knowledge poured straight into the mind of the Twilight God!"
},
{
"id": 7520,
"string": "1\u0000\u0007\b, I'm gonna need the amulet back."
},
{
"id": 7521,
"string": "1\u0000\u0007We gotta go!\u0007He's in the lowest level of the palace!"
}
]
}
]
},
{
"id": 16912918,
"name": "Selh'teus",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7323,
"string": ".)\u0000\u0007(But it was not a complete separation.)"
},
{
"id": 7324,
"string": "1\u0000\u0007(After the Crystal Line was reactivated, energy was siphoned from the fifth mothercrystal...)"
},
{
"id": 7325,
"string": "1\u0000\u0007(Drawing it and the city of Al'Taieu back to Vana'diel.)"
},
{
"id": 7335,
"string": "1\u0000\u0007(However, I am a child of darkness. I could never be the bearer of light.)"
},
{
"id": 7336,
"string": "1\u0000\u0007(I needed a worthy receptacle for that power. I needed you.)"
},
{
"id": 7342,
"string": "1\u0000\u0007(Your journey has been for the sake of the crystal.)"
},
{
"id": 7343,
"string": "1\u0000\u0007(Your adventure is now at an end.)"
},
{
"id": 7344,
"string": "1\u0000\u0007(Return, \b. Return to the light of the crystal.)"
}
]
}
]
},
{
"id": 16912919,
"name": "Ulmia",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7318,
"string": "1\u0000\u0007But why does only this crystal glow with such a strange incandescence...?"
},
{
"id": 7319,
"string": "1\u0000\u0007The air here is so chilly.\u0007The other crystals exuded such a sense of warmth and peace..."
}
]
}
]
},
{
"id": 16912920,
"name": "Tenzen",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7331,
"string": "1\u0000\u0007The return of Al'Taieu and the arrival of the keeper will be prevented."
},
{
"id": 7332,
"string": "1\u0000\u0007This solution was discovered by the boy Selh'teus--and by Phoenix, the fiery bird of rebirth."
},
{
"id": 7333,
"string": "1\u0000\u0007That is why he has visited each of the remaining crystals in turn:\u0007To relieve them of their light and power..."
},
{
"id": 7334,
"string": "1\u0000\u0007And to pour that energy into the crystal that lies before us."
},
{
"id": 7339,
"string": "1\u0000\u0007Phoenix referred to you as the ??Vessel of Light.??"
},
{
"id": 7340,
"string": "1\u0000\u0007Fated to be smashed open before the fifth mothercrystal..."
},
{
"id": 7357,
"string": "1\u0000\u0007Nag'molada!?"
}
]
}
]
},
{
"id": 16912921,
"name": "Jabbos",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7317,
"string": "1\u0000\u0007This is...the...fifth...?"
},
{
"id": 7330,
"string": "1\u0000\u0007So if...the power...of the crystal...is restored...!"
}
]
}
]
},
{
"id": 16912922,
"name": "Shikaree Z",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7316,
"string": "1\u0000\u0007This place...!"
},
{
"id": 7328,
"string": "1\u0000\u0007This is the crystal that the Wyrmking spoke of?"
}
]
}
]
},
{
"id": 16912923,
"name": "Louverance",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7315,
"string": "1\u0000\u0007What happened...?"
},
{
"id": 7327,
"string": "1\u0000\u0007Sustain Al'Taieu?"
}
]
}
]
},
{
"id": 16912924,
"name": "Nag'molada",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7356,
"string": "1\u0000\u0007I, too, wish for the way to be opened."
},
{
"id": 7359,
"string": "s?\u0000\u0007??I will prevail against the deity that dwells beyond the Gate of the Gods. Open the way to Al'Taieu.??\u0007Weren't those the words you used?"
},
{
"id": 7360,
"string": "1\u0000\u0007Do you not find it unfair that only \f\u0000[she\/he] should bear the sins of people?"
},
{
"id": 7361,
"string": "1\u0000\u0007We ancients are all responsible for these events.\u0007I shall shoulder my part of the burden."
}
]
},
{
"id": 2,
"dialogue": [
{
"id": 7407,
"string": "1\u0000\u0007Incredible..."
},
{
"id": 7408,
"string": "1\u0000\u0007Al'Taieu...\u0007You were meant to be impossible to find..."
},
{
"id": 7409,
"string": "1\u0000\u0007Ahahaha!\u0007Who would have thought the plan to open the Gate of the Gods would succeed?"
},
{
"id": 7410,
"string": "1\u0000\u0007Al'Taieu!\u0007Long have I yearned to behold your magnificent spires!"
},
{
"id": 7411,
"string": "1\u0000\u0007Why...?\u0007Why can't I hear the voices?"
},
{
"id": 7412,
"string": "1\u0000\u0007Why do I not hear the whispers of the Zilartian people or the Dawn Maiden?"
},
{
"id": 7413,
"string": "1\u0000\u0007Silence!"
},
{
"id": 7414,
"string": "1\u0000\u0007Your unruly thoughts are clouding my mind!"
},
{
"id": 7415,
"string": "1\u0000\u0007!?"
},
{
"id": 7416,
"string": "1\u0000\u0007So, the rest of you were drawn into this world as well.\u0007How inconvenient..."
},
{
"id": 7417,
"string": "1\u0000\u0007A visit to the Grand Palace of Hu'Xzoi should bring some interesting encounters.\u0007Perhaps the Dawn Maiden is there..."
}
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 16912925,
"name": "Makki-Chebukki",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
},
{
"id": 165,
"dialogue": [
{
"id": 7504,
"string": "1\u0000\u0007There!\u0007I can see him!"
}
]
},
{
"id": 166,
"dialogue": [
{
"id": 7504,
"string": "1\u0000\u0007There!\u0007I can see him!"
}
]
},
{
"id": 167,
"dialogue": [
{
"id": 7504,
"string": "1\u0000\u0007There!\u0007I can see him!"
},
{
"id": 7516,
"string": "1\u0000\u0007He's gonna break the fifth mothercrystal and bring this entire city crashing down on the world!"
}
]
}
]
},
{
"id": 16912926,
"name": "Kukki-Chebukki",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
},
{
"id": 165,
"dialogue": [
]
},
{
"id": 166,
"dialogue": [
]
},
{
"id": 167,
"dialogue": [
{
"id": 7511,
"string": "d!\u0000\u0007Wait!\u0007Take us with you!"
},
{
"id": 7515,
"string": "1\u0000\u0007The great Promathia realized why his children have not come to greet him!"
}
]
}
]
},
{
"id": 16912927,
"name": "Cherukiki",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
},
{
"id": 165,
"dialogue": [
]
},
{
"id": 166,
"dialogue": [
]
},
{
"id": 167,
"dialogue": [
{
"id": 7512,
"string": "1\u0000\u0007Take us with you to Vana'diel!"
},
{
"id": 7514,
"string": "1\u0000\u0007That's right!"
}
]
}
]
},
{
"id": 16912928,
"name": "",
"events": [
{