-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathchamber_of_oracles.json
1594 lines (1498 loc) · 38.7 KB
/
chamber_of_oracles.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": 168,
"name": "Chamber of Oracles",
"actors": [
{
"id": 17465520,
"name": "",
"events": [
{
"id": 7,
"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": 17465522,
"name": "",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7625,
"string": "1\u0000\u0007"
},
{
"id": 7594,
"string": "1\u0000\u0007While visiting Delkfutt's Tower, the elder of the two Zilart princes made a ??connection?? with the crystal. It was then that he had his ??vision.??"
},
{
"id": 7595,
"string": "1\u0000\u0007Using his spiritual power, the prince became an antenna and broadcast this vision--a vision of the gods and eternal paradise--to the masses. "
},
{
"id": 7596,
"string": "1\u0000\u0007According to the vision, people had been cast from this paradise long ago."
},
{
"id": 7597,
"string": "1\u0000\u0007However, those who saw this vision also heard an accompanying voice--a voice telling them that the light of the crystal would lead them back to Paradise."
},
{
"id": 7598,
"string": "1\u0000\u0007When the energy of the five crystals was joined as one, the Gate of the Gods would open and the path to Paradise would once again be lit."
},
{
"id": 7599,
"string": "1\u0000\u0007These words, though, were not taken lightly by all. The Kuluu of the Northlands and we, the Dawnmaidens, spoke out against the vision."
},
{
"id": 7600,
"string": "1\u0000\u0007??What would opening the Gate of the Gods bring upon this planet???\u0007??With Vana'diel transformed, what would become of those who remained???"
},
{
"id": 7601,
"string": "1\u0000\u0007However, the Zilart were already enchanted by this vision of Paradise, and our cries went unnoticed."
},
{
"id": 7602,
"string": "1\u0000\u0007They proceeded in constructing a floating island above one of their temples in the center of their nation. This island was to become the Gate of the Gods."
},
{
"id": 7603,
"string": "1\u0000\u0007However, as you have already learned from Grav'iton, the Kuluu thwarted the Zilart's plan, leading to the annihilation of a complete civilization."
},
{
"id": 7625,
"string": "1\u0000\u0007"
},
{
"id": 7610,
"string": "1\u0000\u0007There is still time..."
},
{
"id": 7611,
"string": "1\u0000\u0007The end is near..."
},
{
"id": 7612,
"string": "1\u0000\u0007You must stop them from opening..."
},
{
"id": 7613,
"string": "1\u0000\u0007The Gate of the Gods..."
}
]
},
{
"id": 2,
"dialogue": [
{
"id": 7623,
"string": "1\u0000\u0007The \u0001\u00053???? is resonating with the door."
},
{
"id": 7624,
"string": "1\u0000\u0007Proceed through the door?\u0007\u000bYes.\u0007No."
},
{
"id": 7622,
"string": "1\u0000\u0007The door cannot be opened from this side."
}
]
}
]
},
{
"id": 17465523,
"name": "Shimmering Circle",
"events": [
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17465524,
"name": "Shimmering Circle",
"events": [
{
"id": 32003,
"dialogue": [
]
}
]
},
{
"id": 17465525,
"name": "Shimmering Circle",
"events": [
{
"id": 32003,
"dialogue": [
]
}
]
},
{
"id": 17465526,
"name": "Shimmering Circle",
"events": [
{
"id": 32003,
"dialogue": [
]
}
]
},
{
"id": 17465527,
"name": "Zeid",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7584,
"string": "1\u0000\u0007So that is how it works...\u0007It is as if this place has been waiting for your arrival."
},
{
"id": 7615,
"string": "1\u0000\u0007Hm? What is this?"
},
{
"id": 7587,
"string": "1\u0000\u0007What does this mean? Who are the Crystal Warriors?"
},
{
"id": 7592,
"string": "1\u0000\u0007So, the reason that they resemble us is a direct result of the five crystals?"
},
{
"id": 7593,
"string": "1\u0000\u0007What did you people try doing ten thousand years ago? And what does that have to do with what the Archduke and his brother are up to now?"
},
{
"id": 7614,
"string": "1\u0000\u0007Delkfutt's Tower? Gate of the Gods? The end of the world? This is more serious than I had imagined."
},
{
"id": 7615,
"string": "1\u0000\u0007Hm? What is this?"
},
{
"id": 7616,
"string": "1\u0000\u0007A prismatic crystal...\u0007You should probably take this with you on your journey. I will take a shard of it as well."
}
]
}
]
},
{
"id": 17465528,
"name": "Eald'narche",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465529,
"name": "Kam'lanaut",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465530,
"name": "Knight01",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465531,
"name": "Knight02",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465532,
"name": "Cast01",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465533,
"name": "Cast02",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465534,
"name": "Cast03",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465535,
"name": "Illusory Image",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
{
"id": 7585,
"string": "1\u0000\u0007We are the Dawnmaidens, servants of the Goddess Altana. Let us be your guide as you venture into the unknown."
},
{
"id": 7586,
"string": "1\u0000\u0007We have long awaited your arrival, ?[son\/daughter] of the five crystals. Just as the Crystal Warriors, your people, too, were born from the great force that dwells deep beneath the surface of Vana'diel."
},
{
"id": 7588,
"string": "1\u0000\u0007Using the power of the crystals, the Zilart created the five warriors."
},
{
"id": 7589,
"string": "1\u0000\u0007Children of the crystals--their senses enhanced to assist them in their duty of guarding the five arks."
},
{
"id": 7590,
"string": "1\u0000\u0007As for you...\u0007A great explosion--the Meltdown--ended the Zilart's evil plan ten thousand years ago. Over the millennia, the power of the crystals has transformed the people of that era to the five races that exist today."
},
{
"id": 7591,
"string": "1\u0000\u0007However, the effect the crystals had on you was not nearly as great as that it had on the five Warriors."
},
{
"id": 7604,
"string": "1\u0000\u0007The Kuluu cannot be blamed for what they did. Had they not acted, Vana'diel as we know it would surely have perished."
},
{
"id": 7605,
"string": "1\u0000\u0007They sacrificed the honor of their people to save the world from certain destruction."
},
{
"id": 7606,
"string": "1\u0000\u0007However, now the two Zilart princes have put their plan into motion. They are once again attempting to open the Gate of the Gods."
},
{
"id": 7607,
"string": "1\u0000\u0007You must do everything in your power to stop them, or Vana'diel...will be lost for eternity."
},
{
"id": 7608,
"string": "1\u0000\u0007Vana'diel belongs to you. No one has the right to take it from you."
},
{
"id": 7609,
"string": "1\u0000\u0007Make your way to Delkfutt's Tower. In that tower await the answers to all your questions."
}
]
}
]
},
{
"id": 17465536,
"name": "MaidenFire",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465537,
"name": "MaidenEarth",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465538,
"name": "MaidenIce",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465539,
"name": "MaidenWind",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465540,
"name": "MaidenWater",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465541,
"name": "MaidenThunder",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465542,
"name": "MaidenLight",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465543,
"name": "MaidenDark",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465544,
"name": "Pedestal of Fire",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465545,
"name": "Pedestal of Earth",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465546,
"name": "Pedestal of Ice",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465547,
"name": "Pedestal of Wind",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465548,
"name": "Pedestal of Water",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465549,
"name": "Pedestal of Lightning",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465550,
"name": "Pedestal of Light",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465551,
"name": "Pedestal of Darkness",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465552,
"name": "",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465553,
"name": "",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465554,
"name": "",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465555,
"name": "Cermet Door",
"events": [
{
"id": 2,
"dialogue": [
]
}
]
},
{
"id": 17465557,
"name": "Cermet Door",
"events": [
{
"id": 5,
"dialogue": [
]
},
{
"id": 6,
"dialogue": [
]
}
]
},
{
"id": 17465572,
"name": "Grav'iton",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465573,
"name": "Eald'narche",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465574,
"name": "Kam'lanaut",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465575,
"name": "Yve'noile",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465576,
"name": "Maiden01",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465577,
"name": "Maiden02",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465578,
"name": "Kuluu01",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465579,
"name": "Kuluu02",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 1,
"dialogue": [
]
}
]
},
{
"id": 17465580,
"name": "KODAI01",
"events": [
{
"id": 3,
"dialogue": [
]
}
]
},
{
"id": 17465581,
"name": "KODAI02",
"events": [
{
"id": 3,
"dialogue": [
]
}
]
},
{
"id": 17465582,
"name": "KODAI03",
"events": [
{