-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathescha_-_ruaun.json
1837 lines (1800 loc) · 68.8 KB
/
escha_-_ruaun.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": 289,
"name": "Escha - Ru'Aun",
"actors": [
{
"id": 17961660,
"name": "Grimslight",
"events": [
]
},
{
"id": 17961679,
"name": "Grumblix",
"events": [
{
"id": 0,
"dialogue": [
{
"id": 7364,
"string": "1\u0000\u0007I travel......hear lots...\u0007Hear...stories... Can tell...if..."
},
{
"id": 7367,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 7368,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007The Decisive Heroine(pt.1).\u0007The Decisive Heroine(pt.2).\u0007The Decisive Heroine(pt.3).\u0007Fall from Grace.\u0007Both Paths Taken.\u0007Pretender to the Throne(pt.1).\u0007Pretender to the Throne(pt.2).\u0007Banished(pt.1).\u0007Banished(pt.2).\u0007Banished(pt.3)."
},
{
"id": 7366,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7369,
"string": "1\u0000\u0007"
},
{
"id": 7366,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7370,
"string": "1\u0000\u0007"
},
{
"id": 7366,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7371,
"string": "1\u0000\u0007"
},
{
"id": 7366,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7366,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7365,
"string": "1\u0000\u0007.........listen......"
}
]
}
]
},
{
"id": 17961681,
"name": "",
"events": [
{
"id": 2,
"dialogue": [
{
"id": 7399,
"string": "1\u0000\u0007Will you leave?\u0007\u000bYes.\u0007No.\u0007??Buy time???"
}
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 5,
"dialogue": [
]
},
{
"id": 6,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
},
{
"id": 8,
"dialogue": [
{
"id": 7045,
"string": "1\u0000\u0007\u001f?You are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the \f\u0001[Chains of Promathia\/Treasures of Aht Urhgan\/Wings of the Goddess\/Seekers of Adoulin\/Rise of the Zilart] mission"
}
]
}
]
},
{
"id": 17961684,
"name": "Tenzen",
"events": [
{
"id": 2,
"dialogue": [
{
"id": 7372,
"string": "1\u0000\u0007Siren! Where is Lady Iroha!?"
},
{
"id": 7385,
"string": "1\u0000\u0007We do not intend to fold, even if Altana cannot help us!"
},
{
"id": 7386,
"string": "1\u0000\u0007All we need is light to guide us, no matter how dim that may be!"
},
{
"id": 7388,
"string": "1\u0000\u0007Siren, your understanding and compassion are beyond compare."
},
{
"id": 7389,
"string": "1\u0000\u0007All the prime avatars can understand our words and thoughts, and will not deny us our due!"
},
{
"id": 7394,
"string": "1\u0000\u0007To think you would do such a thing for us!"
},
{
"id": 7396,
"string": "1\u0000\u0007??Fade??? Why fade?"
},
{
"id": 7407,
"string": "1\u0000\u0007? [Lord\/Lady] \b, it matters not what Siren says. We cannot turn back now!"
},
{
"id": 7408,
"string": "1\u0000\u0007What we seek lies further within!"
}
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7452,
"string": "1\u0000\u0007Lady Iroha!"
},
{
"id": 7453,
"string": "1\u0000\u0007The two of us shall take Iroha somewhere where she can recuperate."
},
{
"id": 7454,
"string": "1\u0000\u0007Here. You will have need of this."
},
{
"id": 7455,
"string": "1\u0000\u0007This is \u0001\u00056???? bestowed upon us by Siren."
},
{
"id": 7456,
"string": "1\u0000\u0007Meet with Selh'teus in our stead. Please."
}
]
},
{
"id": 5,
"dialogue": [
]
}
]
},
{
"id": 17961685,
"name": "Siren",
"events": [
{
"id": 2,
"dialogue": [
{
"id": 7373,
"string": "1\u0000\u0007Ah yes, the cute one. I sense you have a special bond with her."
},
{
"id": 7374,
"string": "1\u0000\u0007Then heed well my words."
},
{
"id": 7375,
"string": "1\u0000\u0007When I was under the ambassador's thrall, I opened up many spatial rifts...though it pains me to admit it."
},
{
"id": 7376,
"string": "1\u0000\u0007One such rift is the location which unfolds before you now."
},
{
"id": 7377,
"string": "1\u0000\u0007Ru'Aun is said to be a place close to the gods, so it is of no wonder he wishes to strike here."
},
{
"id": 7378,
"string": "1\u0000\u0007A cloud of nothingness descending from a different dimension created this land, devoid of all time and color."
},
{
"id": 7379,
"string": "1\u0000\u0007It passed through the crystal, devouring all in its wake."
},
{
"id": 7380,
"string": "1\u0000\u0007Yet what did Altana do to stop it?6\u0002\u0007Nothing."
},
{
"id": 7381,
"string": "1\u0000\u0007She was eminently aware of the truth."
},
{
"id": 7382,
"string": "1\u0000\u0007This is the destiny that Vana'diel is fated to face."
},
{
"id": 7383,
"string": "1\u0000\u0007The tide can no longer be stemmed."
},
{
"id": 7384,
"string": "1\u0000\u0007Altana is alone, having lost her counterpart\f\u0001[\/ in Promathia], and is wholly powerless."
},
{
"id": 7387,
"string": "1\u0000\u0007Ah, such words encourage me to entrust what I can to you."
},
{
"id": 7390,
"string": "1\u0000\u0007I shall show you how to meet Altana."
},
{
"id": 7391,
"string": "1\u0000\u0007But to do so, you must first banish the Emptiness surrounding Reisenjima."
},
{
"id": 7392,
"string": "1\u0000\u0007And the only one who can aid you in that task is Selh'teus."
},
{
"id": 7393,
"string": "1\u0000\u0007I shall grant you the ability to traverse the mists to where Selh'teus resides."
},
{
"id": 7395,
"string": "1\u0000\u0007Never forget your charge, even should Iroha and I fade from this world."
},
{
"id": 7397,
"string": "1\u0000\u0007Hahaha...\u0007Your friend had bid me buy some time, yet I fear that I cannot hold out any longer."
},
{
"id": 7398,
"string": "1\u0000\u0007Go."
},
{
"id": 7400,
"string": "1\u0000\u0007That which wishes to defile the cycle of nature is using us to try to extinguish itself."
},
{
"id": 7401,
"string": "1\u0000\u0007Pray it succeeds."
},
{
"id": 7402,
"string": "1\u0000\u0007She has explicitly expressed that she does not desire to see you."
},
{
"id": 7403,
"string": "1\u0000\u0007Do not get in the way. That which wishes to defile the cycle of nature is trying to extinguish itself."
},
{
"id": 7404,
"string": "1\u0000\u0007She has explicitly expressed that she does not desire to see you."
},
{
"id": 7405,
"string": "1\u0000\u0007That which wishes to defile the cycle of nature is trying to extinguish itself...and we will do our utmost to see that it succeeds."
},
{
"id": 7406,
"string": "1\u0000\u0007You would do best to remain ignorant of the particulars. Now go."
}
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7415,
"string": "1\u0000\u0007Two? Nay, there are three."
},
{
"id": 7437,
"string": "1\u0000\u0007Iroha, perhaps she is correct."
},
{
"id": 7438,
"string": "1\u0000\u0007You are here in the year 884, and have already formed strong bonds with those around you."
},
{
"id": 7439,
"string": "1\u0000\u0007If any can overcome the natural order, it is Altana Herself...and She has infused you with a bit of Her grace."
}
]
},
{
"id": 5,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 17961686,
"name": "Siren Prime",
"events": [
{
"id": 4,
"dialogue": [
{
"id": 7416,
"string": "1\u0000\u0007When this communion has been undertaken, the fate of this age will lie in the hands of those who call it home."
}
]
},
{
"id": 5,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 17961687,
"name": "",
"events": [
{
"id": 2,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
]
},
{
"id": 5,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 17961688,
"name": "",
"events": [
{
"id": 2,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 5,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 17961689,
"name": "Cid",
"events": [
{
"id": 5,
"dialogue": [
{
"id": 7458,
"string": "1\u0000\u0007Well, if this isn't something else. Hey, Naji, get a load of this!"
},
{
"id": 7459,
"string": "1\u0000\u0007I've seen some stuff in my time, but it's wholly unnatural."
},
{
"id": 7460,
"string": "1\u0000\u0007Don't get in over your head, my little adventurer buddy."
},
{
"id": 7461,
"string": "1\u0000\u0007We haven't quite finished up our survey of it, but one thing's fully clear:"
},
{
"id": 7462,
"string": "1\u0000\u0007The longer you stay in this Escha place, the more your spirit slips away."
},
{
"id": 7466,
"string": "1\u0000\u0007You couldn't pay me enough to jump into the vortex over there."
},
{
"id": 7468,
"string": "1\u0000\u0007Have you got a better word for it?"
},
{
"id": 7470,
"string": "1\u0000\u0007You going in?"
},
{
"id": 7473,
"string": "1\u0000\u0007Suppose we can't stop you, but don't go getting yourself killed."
},
{
"id": 7472,
"string": "1\u0000\u0007I think we all agree that's for the best."
}
]
}
]
},
{
"id": 17961690,
"name": "Naji",
"events": [
{
"id": 5,
"dialogue": [
{
"id": 7463,
"string": "1\u0000\u0007As if that's not bad enough, you also lose all sense of time. That's why we make sure to keep someone posted at the entrance."
}
]
}
]
},
{
"id": 17961691,
"name": "Ayame",
"events": [
{
"id": 5,
"dialogue": [
{
"id": 7464,
"string": "1\u0000\u0007The chief is convinced that this is because the power of the crystals is being drained."
},
{
"id": 7465,
"string": "1\u0000\u0007The only reason magic can be used inside is that the energies of Misareaux Coast are seeping in too."
},
{
"id": 7467,
"string": "1\u0000\u0007Vortex?"
}
]
}
]
},
{
"id": 17961692,
"name": "Selh'teus",
"events": [
{
"id": 6,
"dialogue": [
{
"id": 7489,
"string": "1\u0000\u0007..."
},
{
"id": 7490,
"string": "1\u0000\u0007(You're the dread fiend...Balamor.)"
},
{
"id": 7496,
"string": "1\u0000\u0007(A stage?)"
},
{
"id": 7503,
"string": "1\u0000\u0007..."
},
{
"id": 7504,
"string": "1\u0000\u0007(This world isn't just a playground for the gods.)"
},
{
"id": 7509,
"string": "1\u0000\u0007(This fiend is beyond all reason.)"
},
{
"id": 7510,
"string": "1\u0000\u0007(\b, keep him busy.)"
},
{
"id": 7511,
"string": "1\u0000\u0007(In the meantime...I'll seal off that conduit.)"
}
]
},
{
"id": 7,
"dialogue": [
{
"id": 7516,
"string": "1\u0000\u0007(And what does that mean?)"
},
{
"id": 7528,
"string": "1\u0000\u0007The fool is you!"
},
{
"id": 7529,
"string": "1\u0000\u0007Though our world may stumble and falter..."
},
{
"id": 7530,
"string": "1\u0000\u0007I won't let you use it as your plaything!"
},
{
"id": 7534,
"string": "h!\u0000\u0007We did it..."
},
{
"id": 7535,
"string": "1\u0000\u0007We protected the crystals."
},
{
"id": 7537,
"string": "1\u0000\u0007(\b...bring Iroha to Al'Taieu.)"
},
{
"id": 7538,
"string": "1\u0000\u0007(I shall open the gates for you.)"
}
]
}
]
},
{
"id": 17961693,
"name": "Balamor",
"events": [
{
"id": 4,
"dialogue": [
]
},
{
"id": 6,
"dialogue": [
{
"id": 7474,
"string": "1\u0000\u0007Oh me, oh my!"
},
{
"id": 7475,
"string": "1\u0000\u0007Why would you come here to bother me? Surely I'm of no use to you now."
},
{
"id": 7477,
"string": "1\u0000\u0007Ah, your masked friend?"
},
{
"id": 7478,
"string": "1\u0000\u0007I tied him up on the other side of the vortex."
},
{
"id": 7479,
"string": "1\u0000\u0007You know, at first I thought he might have been a pretender, but he's really been quite...useful."
},
{
"id": 7480,
"string": "1\u0000\u0007When I told him I sought astral forces, he up and created this lovely little swirly thing for me!"
},
{
"id": 7481,
"string": "1\u0000\u0007Not that it didn't take a little ??convincing.??"
},
{
"id": 7482,
"string": "1\u0000\u0007Him? He's over on the other side of the vortex."
},
{
"id": 7483,
"string": "1\u0000\u0007You know, at first I thought he might have been a pretender, but he's really been quite...useful."
},
{
"id": 7484,
"string": "1\u0000\u0007When I told him I sought astral forces, he up and created this lovely little swirly thing for me!"
},
{
"id": 7485,
"string": "1\u0000\u0007Not that it didn't take a little ??convincing.??"
},
{
"id": 7486,
"string": "1\u0000\u0007Me? Oh, I'm just gathering astral forces. No need to pay me any heed."
},
{
"id": 7487,
"string": "1\u0000\u0007When I told your masked friend I sought them, he up and created this lovely little vortex for me!"
},
{
"id": 7488,
"string": "1\u0000\u0007Not that it didn't take a little ??convincing.??"
},
{
"id": 7491,
"string": "1\u0000\u0007Oh, Selh'teus, what a grand pleasure it is!"
},
{
"id": 7492,
"string": "1\u0000\u0007I've saved a seat in the front row just for you."
},
{
"id": 7494,
"string": "1\u0000\u0007A bit ironic, wouldn't you say? Lest you forget, it was you who first stole energy from Tartarus."
},
{
"id": 7495,
"string": "1\u0000\u0007And so I'm taking back what's mine--and perhaps a little more--to create the most spectacular of stages!"
},
{
"id": 7497,
"string": "1\u0000\u0007That's right. A world of my own making."
},
{
"id": 7498,
"string": "1\u0000\u0007Vana'diel isn't the only world I've been to. This energy is a gift from the gods--to make a god!"
},
{
"id": 7500,
"string": "1\u0000\u0007The authors of these worlds all have one thing in common--they conjure up lakes and rivers, fashion sentient beings, dictate laws by which all must abide...and then one day, up and abandon their creations."
},
{
"id": 7501,
"string": "1\u0000\u0007Let's just say I'm a bit disgusted at the chaos they've left in their wake."
},
{
"id": 7502,
"string": "1\u0000\u0007You don't need to have traveled to different worlds to know I'm right. Look at your Vana'diel--Emptiness this, all-consuming void that--it's halfway between a tragedy and a comedy of errors!"
},
{
"id": 7505,
"string": "1\u0000\u0007??This world isn't just a playground for the gods???"
},
{
"id": 7506,
"string": "1\u0000\u0007And that's another contributing factor to how vague life is here. One man's justice is another man's evil."
},
{
"id": 7507,
"string": "1\u0000\u0007No, my world will be much simpler. When there is only one path, no one gets lost."
},
{
"id": 7508,
"string": "1\u0000\u0007He who seizes the power of the crystals has the right and provenance to rule!"
}
]
},
{
"id": 7,
"dialogue": [
{
"id": 7513,
"string": ".?\u0000\u0007No!\u0007No no no no!\u0007No no no no no no no no!"
},
{
"id": 7514,
"string": "1\u0000\u0007You're all fools!"
},
{
"id": 7515,
"string": "1\u0000\u0007You don't think of the past or the future. Only the present. So with tit-for-tat the first thing you turn to is the sword."
},
{
"id": 7517,
"string": "1\u0000\u0007Look toward the future--here I stand, poised to create a new world while yours is going to fall into nothingness."
},
{
"id": 7518,
"string": "1\u0000\u0007Don't you think it's foolish to stop me?"
},
{
"id": 7519,
"string": "1\u0000\u0007But let's verbally spar a while longer, hmmm?"
},
{
"id": 7520,
"string": "1\u0000\u0007With him at my side, I could have created a world from the void!"
},
{
"id": 7521,
"string": "1\u0000\u0007If he joined with me, much like he did with Siren..."
},
{
"id": 7522,
"string": "1\u0000\u0007We would have been able to live forever! Bwehehe!"
},
{
"id": 7527,
"string": "1\u0000\u0007What's that, now? Speak up!"
}
]
}
]
},
{
"id": 17961694,
"name": "",
"events": [
{
"id": 4,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 17961695,
"name": "Iroha",
"events": [
{
"id": 4,
"dialogue": [
{
"id": 7414,
"string": "r.\u0000\u0007May your forces intertwine and banish the two of us who are not supposed to be here!"
},
{
"id": 7428,
"string": "1\u0000\u0007Sir Tenzen, Master--I am not the one who fails to comprehend the meaning of my life!"
},
{
"id": 7429,
"string": "1\u0000\u0007None of you could possibly grasp the horror of the future I have seen--the future I have lived!"
}
]
}
]
},
{
"id": 17961696,
"name": "Volto Oscuro",
"events": [
{
"id": 4,
"dialogue": [
]
}
]
},
{
"id": 17961697,
"name": "Kagero",
"events": [
{
"id": 4,
"dialogue": [
{
"id": 7434,
"string": "1\u0000\u0007What of ?[Sir\/Lady] \b? If you truly call ?[him\/her] Master..."
}
]
}
]
},
{
"id": 17961698,
"name": "Undulating Confluence",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7037,
"string": "].\u0000\u0007Jump into the vortex?\u0007\u000bOff we go!\u0007Not just yet."
}
]
},
{
"id": 2,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 5,
"dialogue": [
]
}
]
},
{
"id": 17961699,
"name": "???",
"events": [
{
"id": 9200,
"dialogue": [
{
"id": 7765,
"string": "1\u0000\u0007Proffer which item?\u0007\u000bNone of these.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{
"id": 7766,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17961700,
"name": "???",
"events": [
{
"id": 9201,
"dialogue": [
{
"id": 7765,
"string": "1\u0000\u0007Proffer which item?\u0007\u000bNone of these.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{
"id": 7766,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17961701,
"name": "???",
"events": [
{
"id": 9202,
"dialogue": [
{
"id": 7765,
"string": "1\u0000\u0007Proffer which item?\u0007\u000bNone of these.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{
"id": 7766,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17961702,
"name": "???",
"events": [
{
"id": 9203,
"dialogue": [
{
"id": 7765,
"string": "1\u0000\u0007Proffer which item?\u0007\u000bNone of these.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{
"id": 7766,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17961703,
"name": "???",
"events": [
{
"id": 9204,
"dialogue": [
{
"id": 7765,
"string": "1\u0000\u0007Proffer which item?\u0007\u000bNone of these.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{
"id": 7766,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17961704,
"name": "???",
"events": [
{
"id": 9205,
"dialogue": [
{
"id": 7765,
"string": "1\u0000\u0007Proffer which item?\u0007\u000bNone of these.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{