-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcelennia_memorial_library.json
4409 lines (4369 loc) · 221 KB
/
celennia_memorial_library.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": 284,
"name": "Celennia Memorial Library",
"actors": [
{
"id": 17940491,
"name": "Jedelaih",
"events": [
{
"id": 0,
"dialogue": [
{
"id": 7247,
"string": "1\u0000\u0007The minstrel of melodies is my name,\u0007For a mere \n\u0006 gil I'd recall your past.\u0007But I find that you're lacking in cash or in fame,\u0007So until that time, my kind offer will last."
},
{
"id": 7247,
"string": "1\u0000\u0007The minstrel of melodies is my name,\u0007For a mere \n\u0006 gil I'd recall your past.\u0007But I find that you're lacking in cash or in fame,\u0007So until that time, my kind offer will last."
},
{
"id": 7246,
"string": "4\u0001\u0000\u0007The minstrel of melodies is my name,\u0007For a mere \n\u0006 gil I'll recall your past.\u0007Your stories of love, anger, triumph, and shame,\u0007The river of memories runs deep and vast."
},
{
"id": 7249,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone.\u0007Seekers of Adoulin.\u0007Adoulin Quests.\u0007Additional Scenarios."
},
{
"id": 7250,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone.\u0007The Celennia Memorial Library.\u0007Dark Clouds Ahead.\u0007Evil Entities.\u0007August's Heirloom.\u0007Studying Up.\u0007A New Force Arises.\u0007Sugarcoated Salvation."
},
{
"id": 7251,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone.\u0007Flowers for Svenja.\u0007A Thirst for Eternity.\u0007In the Land of the Blind."
},
{
"id": 7252,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone.\u0007Eyes on You(pt.1).\u0007Eyes on You(pt.2)."
},
{
"id": 7253,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone."
},
{
"id": 7254,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone."
},
{
"id": 7255,
"string": "1\u0000\u0007Which memory will you have recalled?\u0007\u000bNone."
},
{
"id": 6393,
"string": "1\u0000\u0007You do not have enough gil."
}
]
},
{
"id": 37,
"dialogue": [
]
}
]
},
{
"id": 17940492,
"name": "",
"events": [
{
"id": 10,
"dialogue": [
{
"id": 7270,
"string": "1\u0000\u0007??\u0001\u00053??????...?\u0007\u000bNever heard of it.\u0007I'm not terribly familiar..."
}
]
},
{
"id": 11,
"dialogue": [
{
"id": 7270,
"string": "1\u0000\u0007??\u0001\u00053??????...?\u0007\u000bNever heard of it.\u0007I'm not terribly familiar..."
}
]
},
{
"id": 38,
"dialogue": [
]
}
]
},
{
"id": 17940493,
"name": "Margret",
"events": [
{
"id": 10,
"dialogue": [
{
"id": 7256,
"string": "1\u0000\u0007No matter how many tomes we pore over, we cannot find a reliable remedy. This is unacceptable."
},
{
"id": 7257,
"string": "1\u0000\u0007Perhaps we underestimated the severity of the situation."
},
{
"id": 7259,
"string": "1\u0000\u0007<Huff> You know as well as I that the process outlined there is overly simplified! We cannot merely waltz into Foret de Hennetiel, pluck some herbs, and be done with it."
},
{
"id": 7260,
"string": "1\u0000\u0007And worse, that script is hundreds of years old! With Hennetiel succumbing to corruption of late, what proof do we have that the plant even still exists?"
}
]
},
{
"id": 11,
"dialogue": [
{
"id": 7256,
"string": "1\u0000\u0007No matter how many tomes we pore over, we cannot find a reliable remedy. This is unacceptable."
},
{
"id": 7257,
"string": "1\u0000\u0007Perhaps we underestimated the severity of the situation."
},
{
"id": 7259,
"string": "1\u0000\u0007<Huff> You know as well as I that the process outlined there is overly simplified! We cannot merely waltz into Foret de Hennetiel, pluck some herbs, and be done with it."
},
{
"id": 7260,
"string": "1\u0000\u0007And worse, that script is hundreds of years old! With Hennetiel succumbing to corruption of late, what proof do we have that the plant even still exists?"
}
]
}
]
},
{
"id": 17940494,
"name": "Svenja",
"events": [
{
"id": 10,
"dialogue": [
{
"id": 7258,
"string": "1\u0000\u0007But, Margret, look--if we just had \u0001\u00056???? like it said in that tattered volume..."
},
{
"id": 7261,
"string": "1\u0000\u0007You may be right, but still..."
},
{
"id": 7262,
"string": "1\u0000\u0007Can I help you?"
},
{
"id": 7263,
"string": "1\u0000\u0007Why, if it isn't \b. Has Adoulin been treating you well of late?"
},
{
"id": 7264,
"string": "1\u0000\u0007You came to pay your respects at my manor?"
},
{
"id": 7265,
"string": "1\u0000\u0007And there were others who came to petition me as well? Then I simply cannot dawdle here when I am needed elsewhere."
},
{
"id": 7267,
"string": "1\u0000\u0007Pray tell, would you happen to be one of our intrepid pioneers?"
},
{
"id": 7268,
"string": "1\u0000\u0007I see.\u0007Have you ever heard of a rare plant called \u0001\u00056?????"
},
{
"id": 7266,
"string": "1\u0000\u0007You say there were others seeking my assistance? Then I simply cannot dawdle here when I am needed elsewhere."
},
{
"id": 7269,
"string": "1\u0000\u0007Our previous meeting must not have been mere chance. Have you heard tales of a rare plant called \u0001\u00056?????"
},
{
"id": 7271,
"string": "1\u0000\u0007I expected as much, as even our most treasured tomes make scant mention of its existence. It is an herb of sorts said to have grown in Foret de Hennetiel."
},
{
"id": 7271,
"string": "1\u0000\u0007I expected as much, as even our most treasured tomes make scant mention of its existence. It is an herb of sorts said to have grown in Foret de Hennetiel."
},
{
"id": 7272,
"string": "1\u0000\u0007My use of the past tense has likely not escaped your notice. The truth is, since the continent was sealed off centuries ago, our information about Ulbuka's flora has fallen wildly out of date."
},
{
"id": 7273,
"string": "1\u0000\u0007I came to the library this day to find a cure for an illness affecting a young lad here in our fair city...and my research has led me to this plant."
},
{
"id": 7274,
"string": "1\u0000\u0007Grinding a fistful of its roasted leaves and administering the resultant powder as a tonic will cure his ailment...or so this text says."
},
{
"id": 7275,
"string": "1\u0000\u0007Should you happen to stumble across so much as a seedling in the forest, would you do me the kindness of bringing it to my manor? The author described the leaves as being of a deep green hue, with grooved ridges that let rainwater slide right off."
},
{
"id": 7276,
"string": "1\u0000\u0007Should you succeed, you know where to find me."
}
]
},
{
"id": 11,
"dialogue": [
{
"id": 7258,
"string": "1\u0000\u0007But, Margret, look--if we just had \u0001\u00056???? like it said in that tattered volume..."
},
{
"id": 7261,
"string": "1\u0000\u0007You may be right, but still..."
},
{
"id": 7263,
"string": "1\u0000\u0007Why, if it isn't \b. Has Adoulin been treating you well of late?"
},
{
"id": 7264,
"string": "1\u0000\u0007You came to pay your respects at my manor?"
},
{
"id": 7266,
"string": "1\u0000\u0007You say there were others seeking my assistance? Then I simply cannot dawdle here when I am needed elsewhere."
},
{
"id": 7269,
"string": "1\u0000\u0007Our previous meeting must not have been mere chance. Have you heard tales of a rare plant called \u0001\u00056?????"
},
{
"id": 7271,
"string": "1\u0000\u0007I expected as much, as even our most treasured tomes make scant mention of its existence. It is an herb of sorts said to have grown in Foret de Hennetiel."
},
{
"id": 7271,
"string": "1\u0000\u0007I expected as much, as even our most treasured tomes make scant mention of its existence. It is an herb of sorts said to have grown in Foret de Hennetiel."
},
{
"id": 7272,
"string": "1\u0000\u0007My use of the past tense has likely not escaped your notice. The truth is, since the continent was sealed off centuries ago, our information about Ulbuka's flora has fallen wildly out of date."
},
{
"id": 7273,
"string": "1\u0000\u0007I came to the library this day to find a cure for an illness affecting a young lad here in our fair city...and my research has led me to this plant."
},
{
"id": 7274,
"string": "1\u0000\u0007Grinding a fistful of its roasted leaves and administering the resultant powder as a tonic will cure his ailment...or so this text says."
},
{
"id": 7275,
"string": "1\u0000\u0007Should you happen to stumble across so much as a seedling in the forest, would you do me the kindness of bringing it to my manor? The author described the leaves as being of a deep green hue, with grooved ridges that let rainwater slide right off."
},
{
"id": 7276,
"string": "1\u0000\u0007Should you succeed, you know where to find me."
}
]
}
]
},
{
"id": 17940495,
"name": "Andreine",
"events": [
{
"id": 2,
"dialogue": [
{
"id": 7690,
"string": "1\u0000\u0007Dear princess, please remember that you are in a place of learning."
}
]
},
{
"id": 3,
"dialogue": [
{
"id": 7729,
"string": "1\u0000\u0007Hello, my dear \b. Why the long face?"
},
{
"id": 7730,
"string": "1\u0000\u0007Why, yes, I have in fact seen the princess.\u0007She is right over there, doing what library patrons do."
},
{
"id": 7731,
"string": "1\u0000\u0007She has recently been rather absorbed in the abnormalities plaguing the hinterland, and has visited our humble archives numerous times these past weeks."
},
{
"id": 7732,
"string": "1\u0000\u0007As an aside, I believe her current interest lies closer to home. Are you aware of the incident that occurred in town?"
}
]
},
{
"id": 4,
"dialogue": [
{
"id": 7750,
"string": "1\u0000\u0007Ah, \b. Always a pleasure to have you come pay us a visit. Our fair princess is not here today, but I would be glad to assist you in any way I am able."
},
{
"id": 7751,
"string": "1\u0000\u0007Ortharsyne--the sword of the founder king, you mean? All our books on historical happenings and artifacts are located on the shelves toward the back of the room."
},
{
"id": 7752,
"string": "1\u0000\u0007I have but one request--please do not cause much of a ruckus this time."
},
{
"id": 7785,
"string": "1\u0000\u0007All volumes, tomes, and treatises ever published in Adoulin find their way onto our shelves. If it exists, you'll find it here."
},
{
"id": 7786,
"string": "1\u0000\u0007You wish to learn more about our princess's sword? Would that I could help you further, but if what you seek is not located in our annals, then I am unable to do so."
},
{
"id": 7787,
"string": "1\u0000\u0007Perhaps the one who knows the most about the blade would be its wielder--Princess Arciela herself."
}
]
},
{
"id": 5,
"dialogue": [
{
"id": 7945,
"string": "1\u0000\u0007Arciela, \b! What a pleasant surprise."
},
{
"id": 7946,
"string": "1\u0000\u0007I assume you are here to read more about the founder king? If so, I have some unwelcome news."
},
{
"id": 7947,
"string": "1\u0000\u0007You have already read all our tomes that discuss what took place circa the establishment of our nation."
},
{
"id": 7961,
"string": "1\u0000\u0007Of...of course, ma'am.\u0007(This is a blatant abuse of your power!)"
},
{
"id": 7963,
"string": "1\u0000\u0007Well...concealed works are tomes that may not be removed from the premises."
},
{
"id": 7964,
"string": "1\u0000\u0007I would be more than happy to wade through the stacks for you, but I cannot take the plunge without some direction."
},
{
"id": 7966,
"string": "1\u0000\u0007Indeed there are. Though Adoulin was founded long ago, it was not long enough ago to predate the written word. The books are practically cascading from the shelves, so voluminous are they."
},
{
"id": 7967,
"string": "1\u0000\u0007Pioneers also contribute to the archives every day by returning from the jungle with field reports."
},
{
"id": 7968,
"string": "1\u0000\u0007It would not do for some of the information contained within to be seen by common citizens. Therefore, many of those reports are relegated to the stacks for safekeeping."
},
{
"id": 7969,
"string": "1\u0000\u0007In summation, it is impossible to provide you with every tome from this ever-growing mass of vellum. I will need a subject via which to select a few relevant texts."
},
{
"id": 7975,
"string": "1\u0000\u0007??The founder king's retinue,?? is it? Wait but a moment and I will return with an applicable volume."
},
{
"id": 8002,
"string": "1\u0000\u0007??The founder king's battle,?? you say? Very well, I shall march back with an appropriate document posthaste."
},
{
"id": 8024,
"string": "1\u0000\u0007??The founder king's death?? it is, then. Please bear with me while I search for a script germane to it."
},
{
"id": 8025,
"string": "1\u0000\u0007I regret to inform you that, while such a text does exist in our records, I simply cannot find it anywhere in the closed stacks."
},
{
"id": 8027,
"string": "1\u0000\u0007Well, according to the log, we gave one of the ministers special permission to borrow it."
},
{
"id": 8029,
"string": "1\u0000\u0007Yes. It says here that we lent it to Melvien de Malecroix."
},
{
"id": 8039,
"string": "1\u0000\u0007Thank you so much for your diligence, Estienneux, and I am sorry you had to..."
},
{
"id": 8040,
"string": "1\u0000\u0007Ahhh, this is it! Arciela, \b, this is the book I was talking about!"
},
{
"id": 8041,
"string": "1\u0000\u0007It is the only one in our archives that deals with the death of the founder king."
},
{
"id": 7976,
"string": "1\u0000\u0007I trust this is the sort of tome for which you were searching?"
}
]
},
{
"id": 7,
"dialogue": [
{
"id": 8103,
"string": "1\u0000\u0007Good tidings to you, \b. What knowledge do you seek in our humble archives this day?"
},
{
"id": 8104,
"string": "1\u0000\u0007Oh, you wish to know if the princess has spent an inordinate amount of time combing through the pages of a particular tome?"
},
{
"id": 8105,
"string": "1\u0000\u0007Just to be sure...you are referring to something other than a historical text, correct?"
},
{
"id": 8106,
"string": "1\u0000\u0007I see..."
},
{
"id": 8107,
"string": "1\u0000\u0007Aha!"
},
{
"id": 8108,
"string": "1\u0000\u0007I think I know exactly the book for you.\u0007Hopefully this does not take long."
},
{
"id": 8109,
"string": "1\u0000\u0007I remember seeing her hastily shove this one into a completely separate shelf once, so it must be a guilty pleasure of hers."
},
{
"id": 8110,
"string": "1\u0000\u0007Let me worry about the whole checkout process. You go on ahead to Arciela."
},
{
"id": 8111,
"string": "1\u0000\u0007Please give the princess my regards."
}
]
},
{
"id": 8,
"dialogue": [
{
"id": 8111,
"string": "1\u0000\u0007Please give the princess my regards."
}
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
},
{
"id": 12,
"dialogue": [
{
"id": 7277,
"string": "1\u0000\u0007Mistress Svenja's heart is truly made of gold, dropping everything in her hectic schedule to search for a cure like this."
},
{
"id": 7278,
"string": "1\u0000\u0007Finding \u0001\u00056???? deep within Foret de Hennetiel will truly heal this child's malady, will it not? Even if that is not the case, we must do everything in our power to nurse him back to health."
},
{
"id": 7279,
"string": "1\u0000\u0007My standing may be nothing compared to that of the mistress, but I ask that you do her this favor."
}
]
},
{
"id": 13,
"dialogue": [
{
"id": 7280,
"string": "1\u0000\u0007Welcome to the Celennia Memorial Library, an archive of everything related to Adoulin."
},
{
"id": 7281,
"string": "1\u0000\u0007Only those with the proper credentials are able to view the information and data collected by the Scouts' Coalition."
}
]
},
{
"id": 27,
"dialogue": [
{
"id": 7280,
"string": "1\u0000\u0007Welcome to the Celennia Memorial Library, an archive of everything related to Adoulin."
},
{
"id": 7282,
"string": "1\u0000\u0007The Scouts' Coalition is always adding to their stores of knowledge, so check back periodically to see if there's something new on which to feast your mind."
}
]
},
{
"id": 37,
"dialogue": [
]
},
{
"id": 39,
"dialogue": [
{
"id": 7312,
"string": "a?\u0000\u0007Lady Erfimia told me to inform you that she has gone ahead to I-8 in \u0001\u00057???? and will meet you there. She was in such an awful hurry. Whatever could be the matter?"
}
]
},
{
"id": 40,
"dialogue": [
{
"id": 8112,
"string": "1\u0000\u0007Dearest \b, to what do we owe the honor today?"
},
{
"id": 8113,
"string": "1\u0000\u0007Princess Arciela? She is in the closed stacks looking for information on the founder king."
}
]
},
{
"id": 41,
"dialogue": [
]
}
]
},
{
"id": 17940496,
"name": "Erfimia",
"events": [
{
"id": 38,
"dialogue": [
{
"id": 7283,
"string": "1\u0000\u0007Congratulations, Robertioux. To be named high exorcist is quite an honor."
},
{
"id": 7286,
"string": "1\u0000\u0007It's a fresh start--a chance to discover your true strength."
},
{
"id": 7289,
"string": "1\u0000\u0007I don't resent you, Robertioux, although I can't condone your actions."
},
{
"id": 7290,
"string": "1\u0000\u0007What you've been doing is wrong, even now."
},
{
"id": 7292,
"string": "1\u0000\u0007Believe me, I could have, but..."
},
{
"id": 7293,
"string": "1\u0000\u0007In the end, I knew that revealing your secret wouldn't make things right, I guess."
},
{
"id": 7295,
"string": "1\u0000\u0007Oh! \b, you're here!"
},
{
"id": 7296,
"string": "1\u0000\u0007Good. I have a favor to ask of you."
},
{
"id": 7297,
"string": "1\u0000\u0007Over here."
},
{
"id": 7298,
"string": "1\u0000\u0007Ever since that time in Yorcia Weald, I've been trying to learn more about the Ahriman that gave Robertioux the eye."
},
{
"id": 7299,
"string": "1\u0000\u0007Don't you think it's strange? Ahriman aren't native to Ulbuka. How did it even get here? I've spent countless nights here, searching for answers."
},
{
"id": 7300,
"string": "1\u0000\u0007The Scouts' Coalition wasn't any help and it looks like my research hasn't turned up any leads, either. That leaves only one thing to do."
},
{
"id": 7301,
"string": "1\u0000\u0007I've got to get out there and look for clues myself."
},
{
"id": 7302,
"string": "1\u0000\u0007I say ??I,?? but...well, I was really hoping you could come with me again."
},
{
"id": 7304,
"string": "1\u0000\u0007Exorcist Frondeaubaire. Are you researching something as well?"
},
{
"id": 7308,
"string": "1\u0000\u0007An Ahriman? In Yorcia Weald? Where exactly did you see it? Please!"
},
{
"id": 7310,
"string": "1\u0000\u0007Come on, \b! Let's hope it's still out there!"
}
]
}
]
},
{
"id": 17940497,
"name": "Robertioux",
"events": [
{
"id": 38,
"dialogue": [
{
"id": 7284,
"string": "1\u0000\u0007What a farce. An empty title at best now that I no longer possess the eye's power."
},
{
"id": 7285,
"string": "1\u0000\u0007Though I have been chosen to join the high exorcists, I will be of little use to the order now."
},
{
"id": 7287,
"string": "1\u0000\u0007Tell me, Erfimia. What do you stand to gain from keeping the order in the dark?"
},
{
"id": 7288,
"string": "1\u0000\u0007Surely revealing the truth would win you friends in high places. Do you not resent the fact that I am to be rewarded for abusing a profane power?"
},
{
"id": 7291,
"string": "1\u0000\u0007Then why have you not spoken out?"
},
{
"id": 7294,
"string": "1\u0000\u0007..."
},
{
"id": 7294,
"string": "1\u0000\u0007..."
}
]
}
]
},
{
"id": 17940498,
"name": "Frondeaubaire",
"events": [
{
"id": 38,
"dialogue": [
{
"id": 7303,
"string": "1\u0000\u0007Ah, Erfimia. I see you have developed quite an appetite for knowledge these past few days."
},
{
"id": 7305,
"string": "1\u0000\u0007Indeed."
},
{
"id": 7306,
"string": "1\u0000\u0007When I was searching for you and Robertioux in the weald, I caught sight of something strange...an Ahriman."
},
{
"id": 7307,
"string": "1\u0000\u0007I felt that such an unusual occurrence in Ulbuka necessitated further inquiry."
},
{
"id": 7309,
"string": "1\u0000\u0007Hm? Well, I recorded the sighting around I-8 on my map, but wh--"
}
]
}
]
},
{
"id": 17940499,
"name": "Makel-Pakel",
"events": [
{
"id": 34,
"dialogue": [
{
"id": 7658,
"string": "1\u0000\u0007As a member-wember of the Scouts' Coalition, I am tasked with studying the various pieces of equipment that can be gathered from deep within the Ulbukan jungle."
},
{
"id": 7659,
"string": "1\u0000\u0007Of specific interestaru to me are those that hang from one's shoulders. Capes, mantles, cloaks, you name it! ...Or just ones that enhance job-related faculties."
},
{
"id": 7660,
"string": "1\u0000\u0007On a serious-werious note, though, if you bring me said equipment, I'll be pleased as punch."
},
{
"id": 7661,
"string": "1\u0000\u0007Obviously, I'll make it worth your while.\u0007Hmmm... For every three pieces of equipmentaru you bring me, why don't I bequeath you one from my personal troves?"
},
{
"id": 7669,
"string": "1\u0000\u0007Arcane glyptics may be fancy-wancy, but sometimes you want to restore your items to their fresh-off-the-Naakual state."
},
{
"id": 7670,
"string": "1\u0000\u0007Fortunataruly, I can provide this service to you free of charge. A little hocus-pocus goes a long way! Just trade a cape to me--only one at a time--and I'll remove all magical traces in a snap."
}
]
},
{
"id": 35,
"dialogue": [
{
"id": 7662,
"string": "1\u0000\u0007Yeeeah, that's the stuff-wuff."
},
{
"id": 7663,
"string": "1\u0000\u0007Now to fulfill my end of the deal. Quench your thirstaru for power with one of these beauties!"
},
{
"id": 7664,
"string": "1\u0000\u0007Receive which one?\u0007\u000bNone.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????."
},
{
"id": 7665,
"string": "1\u0000\u0007You're positive-wositive this is the one you want?"
},
{
"id": 7666,
"string": "1\u0000\u0007Are you positive?\u0007\u000bYes.\u0007No."
},
{
"id": 7667,
"string": "1\u0000\u0007Mmm...that high thread countaru, that velvety softness... I'd rub this all over my body if you weren't here."
},
{
"id": 7668,
"string": "1\u0000\u0007It's been great doing business-wusiness with you. Come again!"
}
]
},
{
"id": 36,
"dialogue": [
{
"id": 7671,
"string": "1\u0000\u0007Are you absolutaruly sure you wish to remove arcane glyptics from this item?"
},
{
"id": 7666,
"string": "1\u0000\u0007Are you positive?\u0007\u000bYes.\u0007No."
},
{
"id": 7672,
"string": "1\u0000\u0007All clear! Sometimes you want pure cloth untainted by needless magic. There's something to be said for fine craftsmanship!"
}
]
},
{
"id": 37,
"dialogue": [
]
}
]
},
{
"id": 17940500,
"name": "Reja Ygridhi",
"events": [
{
"id": 2,
"dialogue": [
]
},
{
"id": 5,
"dialogue": [
]
},
{
"id": 14,
"dialogue": [
{
"id": 7645,
"string": "1\u0000\u0007Come back after you've prrrocured a member's card from the Scouts' Coalition and talk to me, then you can lose yourself in the worlds each tome crrreates."
}
]
},
{
"id": 15,
"dialogue": [
{
"id": 7652,
"string": "1\u0000\u0007There you are.\u0007I hate to admit it, but your efforts investigating the Naakuals deserve prrraise of some sort."
},
{
"id": 7653,
"string": "1\u0000\u0007What will your reward be?\u0007\u000b?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007\n\u000e bayld.\u0007\n\u000f kinetic unit?\u000f[\/s].\u0007Nothing for the nonce."
},
{
"id": 7655,
"string": "1\u0000\u0007Hmph.\u0007You really want \f\u0000[that\/bayld\/kinetic units]? Now's your last chance to rrreconsider."
},
{
"id": 7656,
"string": "1\u0000\u0007Keep what you chose?\u0007\u000bYes.\u0007No."
},
{
"id": 7655,
"string": "1\u0000\u0007Hmph.\u0007You really want \f\u0000[that\/bayld\/kinetic units]? Now's your last chance to rrreconsider."
},
{
"id": 7656,
"string": "1\u0000\u0007Keep what you chose?\u0007\u000bYes.\u0007No."
},
{
"id": 7655,
"string": "1\u0000\u0007Hmph.\u0007You really want \f\u0000[that\/bayld\/kinetic units]? Now's your last chance to rrreconsider."
},
{
"id": 7656,
"string": "1\u0000\u0007Keep what you chose?\u0007\u000bYes.\u0007No."
},
{
"id": 7657,
"string": "1\u0000\u0007I knew you'd pussyfoot around in the end.\u0007Just tell me what you want when you finally get arrround to deciding."
}
]
},
{
"id": 16,
"dialogue": [
{
"id": 7652,
"string": "1\u0000\u0007There you are.\u0007I hate to admit it, but your efforts investigating the Naakuals deserve prrraise of some sort."
},
{
"id": 7653,
"string": "1\u0000\u0007What will your reward be?\u0007\u000b?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007?\u0001\u0001\u0005#????.\u0007\n\u000e bayld.\u0007\n\u000f kinetic unit?\u000f[\/s].\u0007Nothing for the nonce."
},
{
"id": 7655,
"string": "1\u0000\u0007Hmph.\u0007You really want \f\u0000[that\/bayld\/kinetic units]? Now's your last chance to rrreconsider."
},
{
"id": 7656,
"string": "1\u0000\u0007Keep what you chose?\u0007\u000bYes.\u0007No."
},
{
"id": 7655,
"string": "1\u0000\u0007Hmph.\u0007You really want \f\u0000[that\/bayld\/kinetic units]? Now's your last chance to rrreconsider."
},
{
"id": 7656,
"string": "1\u0000\u0007Keep what you chose?\u0007\u000bYes.\u0007No."
},
{
"id": 7655,
"string": "1\u0000\u0007Hmph.\u0007You really want \f\u0000[that\/bayld\/kinetic units]? Now's your last chance to rrreconsider."
},
{
"id": 7656,
"string": "1\u0000\u0007Keep what you chose?\u0007\u000bYes.\u0007No."
},
{
"id": 7657,
"string": "1\u0000\u0007I knew you'd pussyfoot around in the end.\u0007Just tell me what you want when you finally get arrround to deciding."
}
]
},
{
"id": 17,
"dialogue": [
{
"id": 7630,
"string": "1\u0000\u0007Hsss.\u0007This's the Celennia Memorial Librrrary, and I'm Reja Ygridhi--the one in charge of keeping dust and paw prints off these tomes."
},
{
"id": 7631,
"string": "1\u0000\u0007The city's fat cats told me I have to cooperate with you pioneers' research and let you trrrack mud all over my beloved building. Honestly, though, I don't want your dirty paws anywhere near my books."
},
{
"id": 7632,
"string": "1\u0000\u0007Maybe if you show some respect for the wrrritten word first, then I'll have less of a reason to act like a sourpuss. So, you going to rrrun an errand for me or what?"
},
{
"id": 7633,
"string": "1\u0000\u0007Run an errand for her?\u0007\u000bTo prove my worth? Of course!\u0007I'm not living under the cat's paw."
},
{
"id": 7635,
"string": "1\u0000\u0007Hmph. Maybe you're not so worthless after all.\u0007I need you to confirm how purrrtinent our information about the Twelve Orders is."
},
{
"id": 7636,
"string": "1\u0000\u0007How?\u0007I take it they don't ask you to use your brrrain much out in the jungle, do they?\u0007Keep putting one of your legs in front of the other until you rrreach each order, that's how."
},
{
"id": 7634,
"string": "1\u0000\u0007Then you'd better rrremove yourself from my sight before I claw your face off!"
}
]
},
{
"id": 18,
"dialogue": [
{
"id": 7637,
"string": "1\u0000\u0007I need you to confirm how accurrrate our information about all the Twelve Orders is.\u0007Report to me when you're done."
}
]
},
{
"id": 19,
"dialogue": [
{
"id": 7638,
"string": "1\u0000\u0007I guess you did a good enough job.\u0007I don't apprrreciate your tone, though. Of course there were mistakes--that's because the documents I gave you are years old."
},
{
"id": 7639,
"string": "1\u0000\u0007It was all a test, and despite your mouse-sized brain, you were able to surrrpass my expectations.\u0007See, we don't just shuffle books around here--we also gather intelligence."
},
{
"id": 7640,
"string": "1\u0000\u0007Whether the intelligence you extrrract is worthy of binding and displaying on these shelves is none of your concern. Just collect as much of it as you can and gain as much experience as possible."
},
{
"id": 7641,
"string": "1\u0000\u0007Now that I can trrrust you to some extent, I'd rather not have you die. However, certain types of knowledge are more important than the life of one rrreplaceable pioneer."
},
{
"id": 7642,
"string": "1\u0000\u0007Moreover, it's the information you risk your life for that's always the most crrrucial."
},
{
"id": 7643,
"string": "1\u0000\u0007Don't worry. I'm not so rrreprobate that I won't compensate you for your hard work."
},
{
"id": 7644,
"string": "1\u0000\u0007While we're at it, I suppose we can grrrant you access to the shelves of intelligence we've already amassed. Just don't hack up any hairballs on them, got it?"
}
]
},
{
"id": 20,
"dialogue": [
{
"id": 7650,
"string": "1\u0000\u0007Ah, if it isn't my favorrrite waste of air. The curator's been raving about all you did for our sacred city, and I've been tasked with giving you a little something."
},
{
"id": 7651,
"string": "1\u0000\u0007Fine. It's from me, okay!? Just don't go spouting it from the rrrooftops."