-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathescha_-_zitah.json
1558 lines (1546 loc) · 64.6 KB
/
escha_-_zitah.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": 288,
"name": "Escha - Zi'Tah",
"actors": [
{
"id": 17957418,
"name": "Grimslight",
"events": [
{
"id": 900,
"dialogue": [
{
"id": 7313,
"string": "s.\u0000\u0007You are unable to procure anythin"
},
{
"id": 7311,
"string": "s!\u0000\u0007You successfully procure \u0001\u0001\u0001 \u0001\u0005$???"
},
{
"id": 7310,
"string": "1\u0000\u0007Your \u0001\u00053???? break"
},
{
"id": 7312,
"string": "?!\u0000\u0007You procure \u0001\u0001\u0001 \u0001\u0005$????, but your \u0001\u00053???? breaks in the proces"
},
{
"id": 7314,
"string": "g.\u0000\u0007You cannot carry any more items. Your inventory is ful"
}
]
}
]
},
{
"id": 17957427,
"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.\u0007A Land After Time(pt.1).\u0007A Land After Time(pt.2)."
},
{
"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": 17957429,
"name": "",
"events": [
{
"id": 1,
"dialogue": [
]
},
{
"id": 2,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
{
"id": 7354,
"string": "1\u0000\u0007?@?@ "
}
]
}
]
},
{
"id": 17957430,
"name": "Iroha",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7386,
"string": "1\u0000\u0007This empty husk is void of anything that we could call nature."
},
{
"id": 7388,
"string": "1\u0000\u0007Zi'Tah...yes, I have run across that name several times before."
},
{
"id": 7389,
"string": "1\u0000\u0007Yes, it was when the master first visited Reisenjima."
},
{
"id": 7390,
"string": "1\u0000\u0007?[He\/She] said there was a sanctuary there, much like one in my homeland."
},
{
"id": 7391,
"string": "1\u0000\u0007Those chosen by the mothercrystal may enter a holy shrine deep within the Sanctuary to receive the protection of the Dawnmaidens."
},
{
"id": 7392,
"string": "1\u0000\u0007I had envisioned it to be more bursting with splendor..."
},
{
"id": 7395,
"string": "1\u0000\u0007I do not believe so."
},
{
"id": 7396,
"string": "1\u0000\u0007If the coming Emptiness is to swallow the world, then I would be more inclined to believe that we are catching a glimpse of what that swallowed world would be like."
},
{
"id": 7398,
"string": "t?\u0000\u0007A...bell? But where...?"
},
{
"id": 7401,
"string": "e?\u0000\u0007Zeid\f\u0001[\/, Lion]! Please, stay with us!"
},
{
"id": 7403,
"string": "1\u0000\u0007You were under its thrall."
},
{
"id": 7405,
"string": "1\u0000\u0007If the clamoring has ceased, then we may yet find respite."
},
{
"id": 7406,
"string": "1\u0000\u0007Master, this may be the world we refer to as ??Escha.??"
},
{
"id": 7407,
"string": "1\u0000\u0007I still have much to learn, but your words that day will always stay with me:"
},
{
"id": 7408,
"string": "1\u0000\u0007??When the darkness first came, the Middle Lands were the first to be assaulted. Swaths of land were consumed, leaving a colorless landscape where life once thrived."
},
{
"id": 7409,
"string": "1\u0000\u0007??It marked the beginning of the end.??"
},
{
"id": 7410,
"string": "1\u0000\u0007And that world, you said, was known as Escha."
},
{
"id": 7411,
"string": "1\u0000\u0007Yet the annals say that the Emptiness first started to appear many years hence."
},
{
"id": 7412,
"string": "1\u0000\u0007So why now? Why here?"
},
{
"id": 7414,
"string": "1\u0000\u0007It could be that my returning to your time has placed a stick in the wheel of fate."
},
{
"id": 7415,
"string": "1\u0000\u0007Has the darkness come with me?"
},
{
"id": 7416,
"string": "1\u0000\u0007Though this may sound counterintuitive, I fear we must change the future if we are to save the past."
}
]
},
{
"id": 2,
"dialogue": [
{
"id": 7386,
"string": "1\u0000\u0007This empty husk is void of anything that we could call nature."
},
{
"id": 7388,
"string": "1\u0000\u0007Zi'Tah...yes, I have run across that name several times before."
},
{
"id": 7389,
"string": "1\u0000\u0007Yes, it was when the master first visited Reisenjima."
},
{
"id": 7390,
"string": "1\u0000\u0007?[He\/She] said there was a sanctuary there, much like one in my homeland."
},
{
"id": 7391,
"string": "1\u0000\u0007Those chosen by the mothercrystal may enter a holy shrine deep within the Sanctuary to receive the protection of the Dawnmaidens."
},
{
"id": 7392,
"string": "1\u0000\u0007I had envisioned it to be more bursting with splendor..."
},
{
"id": 7395,
"string": "1\u0000\u0007I do not believe so."
},
{
"id": 7396,
"string": "1\u0000\u0007If the coming Emptiness is to swallow the world, then I would be more inclined to believe that we are catching a glimpse of what that swallowed world would be like."
},
{
"id": 7398,
"string": "t?\u0000\u0007A...bell? But where...?"
},
{
"id": 7401,
"string": "e?\u0000\u0007Zeid\f\u0001[\/, Lion]! Please, stay with us!"
},
{
"id": 7403,
"string": "1\u0000\u0007You were under its thrall."
},
{
"id": 7405,
"string": "1\u0000\u0007If the clamoring has ceased, then we may yet find respite."
},
{
"id": 7406,
"string": "1\u0000\u0007Master, this may be the world we refer to as ??Escha.??"
},
{
"id": 7407,
"string": "1\u0000\u0007I still have much to learn, but your words that day will always stay with me:"
},
{
"id": 7408,
"string": "1\u0000\u0007??When the darkness first came, the Middle Lands were the first to be assaulted. Swaths of land were consumed, leaving a colorless landscape where life once thrived."
},
{
"id": 7409,
"string": "1\u0000\u0007??It marked the beginning of the end.??"
},
{
"id": 7410,
"string": "1\u0000\u0007And that world, you said, was known as Escha."
},
{
"id": 7411,
"string": "1\u0000\u0007Yet the annals say that the Emptiness first started to appear many years hence."
},
{
"id": 7412,
"string": "1\u0000\u0007So why now? Why here?"
},
{
"id": 7414,
"string": "1\u0000\u0007It could be that my returning to your time has placed a stick in the wheel of fate."
},
{
"id": 7415,
"string": "1\u0000\u0007Has the darkness come with me?"
},
{
"id": 7416,
"string": "1\u0000\u0007Though this may sound counterintuitive, I fear we must change the future if we are to save the past."
}
]
},
{
"id": 3,
"dialogue": [
{
"id": 7386,
"string": "1\u0000\u0007This empty husk is void of anything that we could call nature."
},
{
"id": 7388,
"string": "1\u0000\u0007Zi'Tah...yes, I have run across that name several times before."
},
{
"id": 7389,
"string": "1\u0000\u0007Yes, it was when the master first visited Reisenjima."
},
{
"id": 7390,
"string": "1\u0000\u0007?[He\/She] said there was a sanctuary there, much like one in my homeland."
},
{
"id": 7391,
"string": "1\u0000\u0007Those chosen by the mothercrystal may enter a holy shrine deep within the Sanctuary to receive the protection of the Dawnmaidens."
},
{
"id": 7392,
"string": "1\u0000\u0007I had envisioned it to be more bursting with splendor..."
},
{
"id": 7395,
"string": "1\u0000\u0007I do not believe so."
},
{
"id": 7396,
"string": "1\u0000\u0007If the coming Emptiness is to swallow the world, then I would be more inclined to believe that we are catching a glimpse of what that swallowed world would be like."
},
{
"id": 7398,
"string": "t?\u0000\u0007A...bell? But where...?"
},
{
"id": 7401,
"string": "e?\u0000\u0007Zeid\f\u0001[\/, Lion]! Please, stay with us!"
},
{
"id": 7403,
"string": "1\u0000\u0007You were under its thrall."
},
{
"id": 7405,
"string": "1\u0000\u0007If the clamoring has ceased, then we may yet find respite."
},
{
"id": 7406,
"string": "1\u0000\u0007Master, this may be the world we refer to as ??Escha.??"
},
{
"id": 7407,
"string": "1\u0000\u0007I still have much to learn, but your words that day will always stay with me:"
},
{
"id": 7408,
"string": "1\u0000\u0007??When the darkness first came, the Middle Lands were the first to be assaulted. Swaths of land were consumed, leaving a colorless landscape where life once thrived."
},
{
"id": 7409,
"string": "1\u0000\u0007??It marked the beginning of the end.??"
},
{
"id": 7410,
"string": "1\u0000\u0007And that world, you said, was known as Escha."
},
{
"id": 7411,
"string": "1\u0000\u0007Yet the annals say that the Emptiness first started to appear many years hence."
},
{
"id": 7412,
"string": "1\u0000\u0007So why now? Why here?"
},
{
"id": 7414,
"string": "1\u0000\u0007It could be that my returning to your time has placed a stick in the wheel of fate."
},
{
"id": 7415,
"string": "1\u0000\u0007Has the darkness come with me?"
},
{
"id": 7416,
"string": "1\u0000\u0007Though this may sound counterintuitive, I fear we must change the future if we are to save the past."
},
{
"id": 7372,
"string": "1\u0000\u0007Lady Lion!"
},
{
"id": 7382,
"string": "1\u0000\u0007Are you the one known as Zeid?"
},
{
"id": 7424,
"string": "1\u0000\u0007Have you any insight, Lion?"
},
{
"id": 7427,
"string": "t!\u0000\u0007I know not what role she has to play, but her intimate bond with the future is beyond denial."
},
{
"id": 7380,
"string": "1\u0000\u0007Where are we?"
},
{
"id": 7382,
"string": "1\u0000\u0007Are you the one known as Zeid?"
},
{
"id": 7429,
"string": "1\u0000\u0007Master, perhaps Lion could provide us with the guidance that we so desperately require."
},
{
"id": 7431,
"string": "1\u0000\u0007My understanding is that none resonate with the mothercrystal more strongly than she."
},
{
"id": 7432,
"string": "1\u0000\u0007Your role in protecting our future is vital, Master, but Lion is of equal importance."
},
{
"id": 7433,
"string": "1\u0000\u0007She is with the crystal now, is she not?"
}
]
}
]
},
{
"id": 17957431,
"name": "Lion",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7404,
"string": "1\u0000\u0007It gives me chills just thinking about it."
}
]
},
{
"id": 2,
"dialogue": [
{
"id": 7404,
"string": "1\u0000\u0007It gives me chills just thinking about it."
}
]
}
]
},
{
"id": 17957432,
"name": "Zeid",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7387,
"string": "1\u0000\u0007The first thing I noticed about this place is its striking resemblance to the Sanctuary of Zi'Tah, located in northeastern Mindartia."
},
{
"id": 7393,
"string": "1\u0000\u0007Its layout and features resemble Zi'Tah, of that there can be no doubt. Yet the magic and warmth are gone, like we are in a different world entirely."
},
{
"id": 7394,
"string": "1\u0000\u0007...Or is this the future?"
},
{
"id": 7413,
"string": "1\u0000\u0007What if...history were being rewritten?"
},
{
"id": 7417,
"string": "1\u0000\u0007You are right. That is rather difficult to wrap my head around."
},
{
"id": 7418,
"string": "1\u0000\u0007Iroha, is there no way to purge this ??Escha?? from our land?"
},
{
"id": 7420,
"string": "1\u0000\u0007Then only one path lies open to us: figure out what we can for ourselves."
},
{
"id": 7421,
"string": "1\u0000\u0007As if this land were not dangerous enough, now we have that unholy bell to contend with."
}
]
},
{
"id": 2,
"dialogue": [
{
"id": 7387,
"string": "1\u0000\u0007The first thing I noticed about this place is its striking resemblance to the Sanctuary of Zi'Tah, located in northeastern Mindartia."
},
{
"id": 7393,
"string": "1\u0000\u0007Its layout and features resemble Zi'Tah, of that there can be no doubt. Yet the magic and warmth are gone, like we are in a different world entirely."
},
{
"id": 7394,
"string": "1\u0000\u0007...Or is this the future?"
},
{
"id": 7413,
"string": "1\u0000\u0007What if...history were being rewritten?"
},
{
"id": 7417,
"string": "1\u0000\u0007You are right. That is rather difficult to wrap my head around."
},
{
"id": 7418,
"string": "1\u0000\u0007Iroha, is there no way to purge this ??Escha?? from our land?"
},
{
"id": 7420,
"string": "1\u0000\u0007Then only one path lies open to us: figure out what we can for ourselves."
},
{
"id": 7421,
"string": "1\u0000\u0007As if this land were not dangerous enough, now we have that unholy bell to contend with."
}
]
},
{
"id": 3,
"dialogue": [
{
"id": 7387,
"string": "1\u0000\u0007The first thing I noticed about this place is its striking resemblance to the Sanctuary of Zi'Tah, located in northeastern Mindartia."
},
{
"id": 7393,
"string": "1\u0000\u0007Its layout and features resemble Zi'Tah, of that there can be no doubt. Yet the magic and warmth are gone, like we are in a different world entirely."
},
{
"id": 7394,
"string": "1\u0000\u0007...Or is this the future?"
},
{
"id": 7413,
"string": "1\u0000\u0007What if...history were being rewritten?"
},
{
"id": 7417,
"string": "1\u0000\u0007You are right. That is rather difficult to wrap my head around."
},
{
"id": 7418,
"string": "1\u0000\u0007Iroha, is there no way to purge this ??Escha?? from our land?"
},
{
"id": 7420,
"string": "1\u0000\u0007Then only one path lies open to us: figure out what we can for ourselves."
},
{
"id": 7421,
"string": "1\u0000\u0007As if this land were not dangerous enough, now we have that unholy bell to contend with."
},
{
"id": 7379,
"string": "1\u0000\u0007Don't let your guard down for a second. This may look like the Sanctuary of Zi'Tah, but it is not the one we know."
},
{
"id": 7383,
"string": "1\u0000\u0007That is right. And you must be Iroha--Aldo has told me much about you."
},
{
"id": 7384,
"string": "1\u0000\u0007I knew I had to investigate as soon as I heard something was amiss."
},
{
"id": 7381,
"string": "1\u0000\u0007The Sanctuary of Zi'Tah...but not the one we know."
},
{
"id": 7383,
"string": "1\u0000\u0007That is right. And you must be Iroha--Aldo has told me much about you."
},
{
"id": 7384,
"string": "1\u0000\u0007I knew I had to investigate as soon as I heard something was amiss."
},
{
"id": 7430,
"string": "1\u0000\u0007Lion?"
},
{
"id": 7435,
"string": "1\u0000\u0007Iroha? Wait!"
}
]
}
]
},
{
"id": 17957433,
"name": "Undulating Confluence",
"events": [
{
"id": 1,
"dialogue": [
]
},
{
"id": 2,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
]
},
{
"id": 4,
"dialogue": [
{
"id": 7037,
"string": "].\u0000\u0007Jump into the vortex?\u0007\u000bOff we go!\u0007Not just yet."
}
]
}
]
},
{
"id": 17957435,
"name": "???",
"events": [
{
"id": 9200,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957436,
"name": "???",
"events": [
{
"id": 9201,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957437,
"name": "???",
"events": [
{
"id": 9202,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957438,
"name": "???",
"events": [
{
"id": 9203,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957439,
"name": "???",
"events": [
{
"id": 9204,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957440,
"name": "???",
"events": [
{
"id": 9205,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957441,
"name": "???",
"events": [
{
"id": 9206,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957442,
"name": "???",
"events": [
{
"id": 9207,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957443,
"name": "???",
"events": [
{
"id": 9208,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957444,
"name": "???",
"events": [
{
"id": 9209,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957445,
"name": "???",
"events": [
{
"id": 9210,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957446,
"name": "???",
"events": [
{
"id": 9211,
"dialogue": [
{
"id": 7646,
"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": 7647,
"string": "1\u0000\u0007Commence battle?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17957447,
"name": "Affi",
"events": [
{
"id": 9700,
"dialogue": [
]
},
{
"id": 9701,
"dialogue": [
]
},
{
"id": 9702,
"dialogue": [
]
},
{
"id": 9703,
"dialogue": [
]
},
{
"id": 9704,
"dialogue": [
{
"id": 7445,
"string": "?.\u0000\u0007Soon as I set foot in this place I knew I was in fer a treat, but boy, word spreads fast to these adventurer types..."
},
{
"id": 7446,
"string": "1\u0000\u0007Urk... Me? I'm, uh...Affi. And what does an ugly mug like you call yerself?"
},
{
"id": 7447,
"string": "1\u0000\u0007\b? Bwahaha, a better adventurer's name I've never heard!"
},
{
"id": 7448,
"string": "1\u0000\u0007Surely you know what the Tenshodo is, \b? Well, they sent me off to what was supposed to be this Goddessfersaken land...but there's far more coin to make out here than I've imagined."
},
{
"id": 7449,
"string": "1\u0000\u0007So loosen up your purse strings, because I've got sundries aplenty!"
},
{
"id": 7450,
"string": "1\u0000\u0007Aye, I say ??coin to make,?? but that's a bit more metaphori-whatsit than physical. What I'm lookin' fer isn't gil, but a special substance known as ??escha silt.??"
},
{
"id": 7451,
"string": "1\u0000\u0007Dun' worry if you don't have any on you right now. Just go bash some skulls in over yonder, and you'll surely be able to...procure some from the corpses of the fallen."
},
{
"id": 7452,
"string": "1\u0000\u0007Oho! If it isn't my favorite adventurer. What can I do fer you today?"
},
{
"id": 7452,
"string": "1\u0000\u0007Oho! If it isn't my favorite adventurer. What can I do fer you today?"
},
{
"id": 7452,
"string": "1\u0000\u0007Oho! If it isn't my favorite adventurer. What can I do fer you today?"
},
{
"id": 7552,
"string": "1\u0000\u0007Ah, \b, just the ?[guy\/girl] I wanna see. And ?[he\/she] couldn't have come at a better time!"
},
{
"id": 7553,
"string": "1\u0000\u0007I just got orders from Norg to help put down a rather unusual monster that's \f\u0000[supposed to show up\/shown up] here in Escha."
},
{
"id": 7554,
"string": "1\u0000\u0007If yer headed down there to join the fight, I've got somethin' here yer gonna like!"
},
{
"id": 7452,
"string": "1\u0000\u0007Oho! If it isn't my favorite adventurer. What can I do fer you today?"
},
{
"id": 7535,
"string": "1\u0000\u0007What would you like to do?\u0007\u000bNothing in particular.\u0007\f\u0000[Receive elvorseal\/Return elvorseal].\u0007Teleport to the target monster.\u0007Check area blessings.\u0007Receive key items.\u0007View grisly trinket notes.\u0007Receive vorseals.\u0007Return vorseals.\u0007Check vorseal effects.\u0007Receive temporary items.\u0007Hear various explanations."
},
{
"id": 7453,
"string": "1\u0000\u0007Everything's got a price, my fine friend, most of all information. Grease my palms with \n\u0000 pinches of escha silt and we'll do business."
},
{
"id": 7512,
"string": "1\u0000\u0007Pay silt? (current silt: \n\u0000)\u0007\u000bYes. (pay \n\u0001 silt)\u0007Maybe not."
},
{
"id": 7454,
"string": "1\u0000\u0007A pleasure. A bloomin' pleasure."
},
{
"id": 7458,
"string": "1\u0000\u0007What kinda dunce do you take me fer? That's not nearly enough silt!"
},
{
"id": 7455,
"string": "1\u0000\u0007A bit big for our britches, aren't we? Then let me give you a little tip fer free--don't get killed."
},
{
"id": 7593,
"string": "1\u0000\u0007Oh right, the area blessings. No problemo, might wanna jot these down so ya remember."
},
{
"id": 7594,
"string": "1\u0000\u0007These are the blessings currently in effect throughout the area..."
},
{