-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathchateau_doraguille.json
8450 lines (8168 loc) · 290 KB
/
chateau_doraguille.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": 233,
"name": "Chateau d'Oraguille",
"actors": [
{
"id": 17731585,
"name": "Destin",
"events": [
{
"id": 8,
"dialogue": [
{
"id": 7791,
"string": "1\u0000\u0007I have heard of your valiant efforts from my son. It would not be an understatement to say that your repeated bravery has helped maintain peace throughout the Kingdom."
},
{
"id": 7792,
"string": "1\u0000\u0007As for Lightbringer, as long as Rochefogne remains unconscious..."
},
{
"id": 7797,
"string": "1\u0000\u0007You do so much resemble your sister...\u0007Forgive me. We all thought you had perished during the Great War. If I had only known that you were the true Rochefogne, we might have been able to prevent the loss of so many lives."
},
{
"id": 7799,
"string": "1\u0000\u0007You may rise, Rochefogne.\u0007As much as I would like to reminisce of times past, I first wish to know of Lightbringer."
},
{
"id": 7821,
"string": "1\u0000\u0007However, the legend of Ranperre tells of how the Dragon King used Lightbringer to bring peace to San d'Oria. How could such an instrument of good bring so much evil?"
},
{
"id": 7824,
"string": "1\u0000\u0007I agree. And I have the perfect citizen to help carry out the task."
},
{
"id": 7825,
"string": "1\u0000\u0007\b, you are well-versed in the layout of King Ranperre's Tomb. I ask you to travel there in advance and rid the area of any evil that could endanger the task at hand."
},
{
"id": 7826,
"string": "1\u0000\u0007I have a feeling that the Orcs may pay us another unexpected visit."
}
]
},
{
"id": 21,
"dialogue": [
]
},
{
"id": 61,
"dialogue": [
{
"id": 7265,
"string": "1\u0000\u0007Trion has spoken to me about you. At long last we meet, \b. I commend you for putting an end to the Shadow Lord."
},
{
"id": 7272,
"string": "1\u0000\u0007Of course, our nation has fallen ill. Our long struggle with the beastmen has prevented any recovery from the war."
},
{
"id": 7273,
"string": "1\u0000\u0007Much like the reign of King Ranperre."
},
{
"id": 7275,
"string": "1\u0000\u0007Yes, our great ancestor. But that king pulled our kingdom from the brink, and brought San d'Oria again to greatness."
},
{
"id": 7278,
"string": "1\u0000\u0007Yes. The legends speak of King Ranperre and how he used the Treasure to save his nation."
}
]
},
{
"id": 65,
"dialogue": [
{
"id": 7986,
"string": "1\u0000\u0007Halver, it is most troublesome. There is something I must confer with you about.\u0007Nay, rather I have a request for you."
},
{
"id": 7988,
"string": "1\u0000\u0007Ahem. Well, how do I begin?\u0007Do you recall the day when my beloved Leaute first came to the chateau?"
},
{
"id": 7995,
"string": "1\u0000\u0007This has nothing to do with Leaute.\u0007I wanted to speak with you about a new queen."
},
{
"id": 7997,
"string": "1\u0000\u0007Hrmph. I thought perhaps it was time the subject was breached."
},
{
"id": 7999,
"string": "1\u0000\u0007Yes, I do not doubt that Leaute has been uneasy in her eternal rest. Halver, I want you to search for a suitable lady to become the future Queen of San d'Oria."
},
{
"id": 8002,
"string": "1\u0000\u0007Hmmm. Naturally, she must have a compassionate heart for all of our subjects, as did my dear Leaute."
},
{
"id": 8005,
"string": "1\u0000\u0007It is said that men always look for the image of their mother, however...\u0007These things you should be asking of the lady's future husband. Finding out his preferences will be part of this task."
},
{
"id": 8008,
"string": "1\u0000\u0007Haven't you been listening, Halver? We are speaking of Trion's bride-to-be!"
},
{
"id": 8009,
"string": "1\u0000\u0007Of course, it is yet to be decided whether or not Trion is to succeed me. However, it is a distinct possibility. It will be necessary to find Pieuje a bride as well, but for the moment I believe we should search for a fitting consort for Crown Prince Trion."
},
{
"id": 8011,
"string": "1\u0000\u0007The only peculiar thing around here is you, Halver! \u0007In any case, I entrust you with the duty of finding Trion a suitable wife and arranging an introduction."
},
{
"id": 8012,
"string": "1\u0000\u0007This need not be so difficult if Trion is merely made aware of the fact that he has approached a marriageable age."
},
{
"id": 8016,
"string": "1\u0000\u0007Ahahaha! Halver, have you developed a sense of humor over the years?"
},
{
"id": 8018,
"string": "1\u0000\u0007I never thought you were the type to indulge in comedy. You must entertain us with your jests at the next banquet."
},
{
"id": 8019,
"string": "1\u0000\u0007Now, as for Trion's preferences. This is quite a quandary, isn't it?"
},
{
"id": 8024,
"string": "1\u0000\u0007Of course, who would know better than his own brother? \u0007Well? Out with it then, Pieuje."
},
{
"id": 8028,
"string": "1\u0000\u0007Hmm, things have certainly changed since my day. Mayhap this is the best choice for him.\u0007Halver, continue this discussion with Pieuje and seek out a girl that matches Trion's interests."
},
{
"id": 8029,
"string": "1\u0000\u0007Pieuje, not a word of this to your brother. He will become obstinate if he finds that we have been having this discussion without his knowledge."
}
]
},
{
"id": 70,
"dialogue": [
{
"id": 8162,
"string": "1\u0000\u0007Ah, \b!\u0007I am delighted to see you have shown interest in our fine exercise."
},
{
"id": 8163,
"string": "1\u0000\u0007I can assume you have already been informed of the finer details of Conflict, can I not?"
},
{
"id": 8164,
"string": "1\u0000\u0007The three nations are finally at peace. Tension between the people of Vana'diel is the last thing any of us wish. However, while only a simple exercise, a game such as Ballista could be misinterpreted by some as a direct attack on an ally."
},
{
"id": 8165,
"string": "1\u0000\u0007That is where you adventurers come in. Your minds are still clear, your spirits fresh. You are not controlled by petty politics and hidden agendas. It is you who have the opportunity to become the true heroes of the Kingdom."
},
{
"id": 8166,
"string": "1\u0000\u0007Ah, but to think I would live to see the day Conflict was reinstated. Just thinking of the heated battle makes my heart race with excitement."
},
{
"id": 8167,
"string": "1\u0000\u0007When I was still young, I would spend my days training for Ballista with my fellow knights. Victory was the only thing on our minds."
},
{
"id": 8168,
"string": "1\u0000\u0007Knowing thy enemy and using that knowledge to strike him down...\u0007Giving your all till you have no more to give...\u0007The power of the spirit is what drives us, young \b."
},
{
"id": 8169,
"string": "1\u0000\u0007And when the battle is through, there remains no hate nor spite--only a bond between brothers that can be experienced through the silent, firm handshake exchanged before parting."
},
{
"id": 8170,
"string": "1\u0000\u0007You have my permission to take part in the games.\u0007My only regret is that due to my age, I will be unable to fight by your side."
},
{
"id": 8171,
"string": "1\u0000\u0007However, forget not during these exercises you will be bearing the emblem of the Kingdom. The honor of San d'Oria is at stake, so act accordingly."
},
{
"id": 8172,
"string": "1\u0000\u0007Defeat is not an option. I expect you to do your best, and I expect you to win."
}
]
},
{
"id": 71,
"dialogue": [
{
"id": 8173,
"string": "1\u0000\u0007Hmmm..."
},
{
"id": 8174,
"string": "1\u0000\u0007So you are the adventurer known as \b. It has come to my attention that you wish to participate in our battle exercises."
},
{
"id": 8175,
"string": "1\u0000\u0007Step closer and show me your face."
},
{
"id": 8176,
"string": "1\u0000\u0007..."
},
{
"id": 8178,
"string": "1\u0000\u0007When I learned that adventurers from Bastok would be taking part in Conflict, I was looking forward to seeing what kind of brute warrior the Republic would send. But if this is all my Hume companions have to offer, I can be only more positive that the forces of San d'Oria will be victorious."
},
{
"id": 8179,
"string": "1\u0000\u0007In recent years our two nations have been on amicable terms. However, I do not feel that any of my loyal citizens have forgotten what transpired in the Konschtat Highlands."
},
{
"id": 8180,
"string": "1\u0000\u0007When I learned that adventurers from Windurst would be taking part in Conflict, I was looking forward to seeing what kind of mighty sorcerer the Federation would send. But if this is all my Tarutaru companions have to offer, I can be only more positive that the forces of San d'Oria will be victorious."
},
{
"id": 8181,
"string": "1\u0000\u0007In recent years San d'Oria and Windurst have been on amicable terms. However, I do not feel that any of my loyal citizens have forgotten the bitter history that stains our nations' past."
},
{
"id": 8182,
"string": "1\u0000\u0007Ballista is the perfect opportunity to help erase the unwanted feelings of spite between us. But this does not mean my Kingdom's forces will show pity to their opponents. I will grant you the opportunity to withdraw your participation, if you wish."
},
{
"id": 8183,
"string": "1\u0000\u0007...I see that you have already made up your mind."
},
{
"id": 8184,
"string": "1\u0000\u0007Understood.\u0007Speak with Excenmille in Northern San d'Oria. There you will receive your Conflict registration."
},
{
"id": 8185,
"string": "1\u0000\u0007You may have had success in previous battles, but the road that lies ahead is like nothing you have traveled before. Clear your heart and cast off all inhibitions, and you will go far."
},
{
"id": 8186,
"string": "1\u0000\u0007I wish you and your nation luck, \b."
}
]
},
{
"id": 72,
"dialogue": [
]
},
{
"id": 87,
"dialogue": [
{
"id": 6717,
"string": "1\u0000\u0007I have heard good things about you, \b. Your contributions to the Kingdom are both welcomed and appreciated."
},
{
"id": 6718,
"string": "1\u0000\u0007I assume you have heard the details from Halver. Your next mission is a request left by my late wife, Leaute, in her will."
},
{
"id": 6719,
"string": "1\u0000\u0007You've visited the garden where the queen rests, have you not?"
},
{
"id": 6720,
"string": "1\u0000\u0007In that garden grows a rare, delicate flower, found only in certain remote areas of Vana'diel. My wife asked in her will that this flower, the \u0001\u00053????, always bloom by her side."
},
{
"id": 6721,
"string": "1\u0000\u0007It sounds like a simple task, but the rarity of the seeds forces us to send out our finest warriors."
},
{
"id": 6722,
"string": "1\u0000\u0007That is why I have called you here, \b. I can trust you will find \u0001\u00056???? and plant it in the garden alongside my dear wife's grave."
}
]
},
{
"id": 99,
"dialogue": [
]
},
{
"id": 100,
"dialogue": [
]
},
{
"id": 104,
"dialogue": [
{
"id": 6827,
"string": "1\u0000\u0007Welcome back from your long journey, \b. I am pleased to report that Curilla's forces located the holy sword, Lightbringer."
},
{
"id": 6828,
"string": "1\u0000\u0007According to the writings in our ancient tomes, the scholars feel that the retrieved sword is truly the lost Treasure of the Dragon King."
},
{
"id": 6829,
"string": "1\u0000\u0007The path leading to this day has been long and treacherous. However, our journey is nearly complete. I do not have the words to express my gratitude for your services."
},
{
"id": 6830,
"string": "1\u0000\u0007I thank you, and wish that you might continue your work for the good of San d'Oria long after I have stepped down from the throne."
},
{
"id": 6831,
"string": "1\u0000\u0007However, one final ceremony must be held--the true heir to the House of d'Oraguille must be decided. At that time, your service will again be called upon."
}
]
},
{
"id": 121,
"dialogue": [
]
},
{
"id": 537,
"dialogue": [
{
"id": 7088,
"string": "1\u0000\u0007Welcome, \b. I am Destin, King of San d'Oria."
},
{
"id": 7089,
"string": "1\u0000\u0007Please, be at ease. I've heard of you from Claidie. Much have you done for the Kingdom, it seems!"
}
]
},
{
"id": 567,
"dialogue": [
{
"id": 8487,
"string": "1\u0000\u0007An iron giant with the power to smite an airship from the sky, and a young Empress who would nonetheless seek to restore its power..."
},
{
"id": 8489,
"string": "1\u0000\u0007I would hear your counsel, Halver."
},
{
"id": 8507,
"string": "1\u0000\u0007Very well."
},
{
"id": 8508,
"string": "1\u0000\u0007Halver and my sons present a compelling case.\u0007Return to this Empress, and tell her San d'Oria stands with her.\u0007Now farewell, and may the Goddess watch over your journey!"
}
]
},
{
"id": 568,
"dialogue": [
{
"id": 8487,
"string": "1\u0000\u0007An iron giant with the power to smite an airship from the sky, and a young Empress who would nonetheless seek to restore its power..."
},
{
"id": 8489,
"string": "1\u0000\u0007I would hear your counsel, Halver."
},
{
"id": 8507,
"string": "1\u0000\u0007Very well."
},
{
"id": 8510,
"string": "1\u0000\u0007Halver and my son present a compelling case.\u0007Return to this Empress, and tell her San d'Oria stands with her.\u0007Now farewell, and may the Goddess watch over your journey!"
}
]
}
]
},
{
"id": 17731586,
"name": "Destin",
"events": [
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
{
"id": 7833,
"string": "1\u0000\u0007I know that your bodies still ache from our recent encounter with the Orcs."
},
{
"id": 7834,
"string": "1\u0000\u0007However, I require your utmost attention, for I have an important announcement."
},
{
"id": 7835,
"string": "1\u0000\u0007I have decided that it is in the best interest of the Kingdom to prolong the Rites of Succession indefinitely. My sons still have much to learn of ruling a kingdom. Furthermore, when the time comes for me to step down, if I find my sons inadequate, I will not hesitate in selecting an heir from outside the d'Oraguille family."
},
{
"id": 7836,
"string": "1\u0000\u0007It is not only the royal family, but others like \b, that have silently supported San d'Oria for the past twenty years. Perhaps it is an adventurer such as ?[he\/she] that would be best suited for the throne."
},
{
"id": 7837,
"string": "1\u0000\u0007The arrogance of the Elvaan has held back this country for much too long. From today forth, we shall recognize our fellow races and join hands with them to form a stronger, better kingdom."
},
{
"id": 7840,
"string": "1\u0000\u0007We can hold our heads high knowing that there are adventurers such as \b, willing to risk their lives for the good of the Kingdom."
}
]
},
{
"id": 10,
"dialogue": [
{
"id": 7749,
"string": "1\u0000\u0007I see you have all arrived. Now all we have is to wait for Claidie."
},
{
"id": 7750,
"string": "1\u0000\u0007Ah, how is he? How is Rochefogne?"
},
{
"id": 7752,
"string": "1\u0000\u0007I see... Then we must wait until we may ask any more questions.\u0007However, I have just learned that the role of Lightbringer in the Rites of Succession was conceived by the papsque himself..."
},
{
"id": 7753,
"string": "1\u0000\u0007He lied to us about the true inscription on the stone tablet. The true inscription speaks of how the sword must be protected at all times and must never be drawn."
},
{
"id": 7755,
"string": "1\u0000\u0007The papsque had come to believe that Lightbringer was the key to the Gates of Paradise. It seems as if the Archduke of Jeuno's brother, Eald'narche, led him to believe this..."
},
{
"id": 7756,
"string": "1\u0000\u0007Because the sword can only be drawn by a member of the royal family, His Holiness conceived the Rites of Succession."
},
{
"id": 7759,
"string": "1\u0000\u0007We shall never know the full extent of the papsque's ambition, but just like us, he was lured by the awesome power that Lightbringer harbors in its blade."
},
{
"id": 7763,
"string": "1\u0000\u0007Whatever the case, we cannot afford to let the beastmen attempt to use it, even if it takes the dispatch of every last soldier in San d'Oria."
},
{
"id": 7765,
"string": "1\u0000\u0007Trion...?"
},
{
"id": 7768,
"string": "1\u0000\u0007Curb your conceit, Trion!"
},
{
"id": 7770,
"string": "1\u0000\u0007Trion, you are simply dancing on the stage of destiny. It is time for you to come down and face reality."
},
{
"id": 7772,
"string": "1\u0000\u0007I will command the army."
},
{
"id": 7773,
"string": "1\u0000\u0007Trion, you will stand on the front lines and show the knights the true honor and valor of the d'Oraguille family."
},
{
"id": 7774,
"string": "1\u0000\u0007Pieuje, you will maintain the supply routes, providing constant support to the front line and your brother."
},
{
"id": 7775,
"string": "1\u0000\u0007Claidie, you will tend to Rochefogne, as well as watch over him. He has yet to win my trust."
},
{
"id": 7776,
"string": "1\u0000\u0007\b, after this display, you must think the royal family pitiful. However, I have one last request of you. I wish you to stand on the front lines with Trion."
},
{
"id": 7777,
"string": "1\u0000\u0007And finally, we must not forget that we must be faithful to the citizens of this kingdom. We stand on the foundation they built. We must not lose their trust."
},
{
"id": 7779,
"string": "1\u0000\u0007Good work. Tell the scout to rest from his journey."
}
]
},
{
"id": 21,
"dialogue": [
{
"id": 6754,
"string": "1\u0000\u0007Yes, Trion.\u0007Oh, I see the discoverer of the ancient tome is also here with us."
},
{
"id": 6755,
"string": "1\u0000\u0007Well, as you all expected, the tomb discovered is in fact the true resting place of the Dragon King. I applaud our adventurer on ?[his\/her] work."
},
{
"id": 6756,
"string": "1\u0000\u0007In addition to this, the ancient writings also tell us about King Ranperre's Treasure..."
},
{
"id": 6757,
"string": "1\u0000\u0007According to the encrypted tome, the Treasure is a sword--a sword that, when unsheathed, wields more power than one can imagine. ??Lightbringer.??"
},
{
"id": 6760,
"string": "1\u0000\u0007Unfortunately, the whereabouts of the sword were not found within the tome's pages. However, our investigation has taken an important step forward."
},
{
"id": 6761,
"string": "1\u0000\u0007\b. If you obtain any new information on Lightbringer, I ask you to share it with us."
},
{
"id": 6762,
"string": "1\u0000\u0007While finding Ranperre's holy sword is one of our top priorities, paying proper homage to our former king is something I wish to do as successor to his throne."
},
{
"id": 6763,
"string": "1\u0000\u0007\b. I wish for you to travel to the Dragon King's tomb and purge the area of any vermin. We will follow directly behind."
}
]
},
{
"id": 32,
"dialogue": [
]
},
{
"id": 61,
"dialogue": [
{
"id": 7280,
"string": "1\u0000\u0007Hmph. If only we knew! This is all but legend, but apparently the king sealed it away somewhere. I cannot fathom why."
},
{
"id": 7281,
"string": "1\u0000\u0007Many were sent looking for it, but none succeeded. Perhaps now is the time we must find it and break the barrier that protects it."
},
{
"id": 7282,
"string": "1\u0000\u0007\b, should you uncover any news of Ranperre's Treasure, report to us at once."
},
{
"id": 7284,
"string": "1\u0000\u0007Now just a moment, Trion. Why should we wander in darkness when the papsque may still illuminate us?"
},
{
"id": 7286,
"string": "1\u0000\u0007Yes. I have faith that soon he will find some clue for us."
},
{
"id": 7287,
"string": "1\u0000\u0007My own life is waning. I must solve this mystery while I still breathe!"
},
{
"id": 7289,
"string": "1\u0000\u0007When that time comes, \b, your assistance will be needed by us all. Do not let us down!"
},
{
"id": 7293,
"string": "1\u0000\u0007That is all for today. Go and rest, for soon enough we may call upon you again."
}
]
},
{
"id": 99,
"dialogue": [
]
},
{
"id": 100,
"dialogue": [
{
"id": 6805,
"string": "1\u0000\u0007Call forth all members of the court. Has the adventurer \b arrived?"
},
{
"id": 6806,
"string": "1\u0000\u0007Ah, \b. The deciphering of the stone tablet you found has been completed."
},
{
"id": 6807,
"string": "1\u0000\u0007There is one line that has us especially intrigued..."
},
{
"id": 6808,
"string": "1\u0000\u0007??Light will befall the great Vana'diel only when the true heir of d'Oraguille raises Lightbringer to the heavens.??"
},
{
"id": 6811,
"string": "1\u0000\u0007Then it is decided. When we have possession of the legendary sword, Trion and Pieuje will both attempt to unsheathe it."
},
{
"id": 6812,
"string": "1\u0000\u0007Whoever succeeds will take my place on the throne as the true heir to the House of d'Oraguille."
},
{
"id": 6815,
"string": "1\u0000\u0007Trion or Pieuje--the sword will decide the future of San d'Oria and lead us from the darkness. Of course, we must first locate the Treasure of the Dragon King."
},
{
"id": 6816,
"string": "1\u0000\u0007Rahal. Curilla.\u0007I want your knights to concentrate their efforts on locating Lightbringer."
},
{
"id": 6819,
"string": "1\u0000\u0007And \b.\u0007Report to Rahal for your orders. I trust that your involvement in this investigation can only benefit San d'Oria."
},
{
"id": 6820,
"string": "1\u0000\u0007Set forth and search the darkness for the light that will guide us to a brighter future. The dawn of a new era in San d'Oria is upon us!"
}
]
},
{
"id": 509,
"dialogue": [
{
"id": 7100,
"string": "1\u0000\u0007Curilla? Are you there?"
},
{
"id": 7102,
"string": "1\u0000\u0007Ah, very good. Your leadership was exemplary, as always. Thanks to you, I may focus on my duties."
},
{
"id": 7104,
"string": "1\u0000\u0007However, Curilla, there seems to be something you overlooked."
},
{
"id": 7106,
"string": "1\u0000\u0007During the uproar, somebody made off with the talisman!"
},
{
"id": 7108,
"string": "1\u0000\u0007The very one. We were visited by an infiltrator while our eyes were on the brigands."
},
{
"id": 7110,
"string": "1\u0000\u0007I suspected them so."
},
{
"id": 7112,
"string": "1\u0000\u0007But before we track down this infiltrator, first must we thwart their sinister plot. Halver, let us decide on a plan of action."
},
{
"id": 7113,
"string": "1\u0000\u0007Curilla, be not disheartened; by no means was this your fault. Call off the alert, and return to your regular duties."
},
{
"id": 7114,
"string": "1\u0000\u0007Well, \b, your help is needed yet again. Halver will convey my orders soon enough... Remember, you have our thanks!"
}
]
},
{
"id": 537,
"dialogue": [
{
"id": 7090,
"string": "1\u0000\u0007As I'm sure Lord Halver has told you, we decided to appoint you to serve in the Embassy of San d'Oria at Jeuno."
},
{
"id": 7091,
"string": "1\u0000\u0007Recently we lost one of our staff there. But do not be alarmed, for you shall serve under my direct appointment."
},
{
"id": 7092,
"string": "1\u0000\u0007Take that letter of introduction with you and depart for Jeuno."
},
{
"id": 7093,
"string": "1\u0000\u0007The embassy has been informed, and is expecting you. Show the letter to any of the staff there."
},
{
"id": 7094,
"string": "1\u0000\u0007Depart as soon as you are able."
},
{
"id": 7095,
"string": "1\u0000\u0007Safe journeys, \b.4\u0002"
}
]
}
]
},
{
"id": 17731587,
"name": "Trion",
"events": [
{
"id": 3,
"dialogue": [
{
"id": 7863,
"string": "1\u0000\u0007\b, you have my gratitude for saving my life in the Qu'Bia Arena."
},
{
"id": 7864,
"string": "1\u0000\u0007The Royal Knights have driven the Orcs into a corner. Our conflict with fiends will soon be resolved. As much as I wish to stand on the frontline with my fellow soldiers, I have many new responsibilities to face here in the chateau."
},
{
"id": 7865,
"string": "1\u0000\u0007I may, once again, require your services. Until then, may the Goddess shine Her glory upon you in your travels."
}
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
{
"id": 7757,
"string": "1\u0000\u0007So the ceremony was a farce...?"
},
{
"id": 7760,
"string": "1\u0000\u0007Then what...is Lightbringer?"
},
{
"id": 7764,
"string": "1\u0000\u0007Father, let me take command of the army."
},
{
"id": 7766,
"string": "1\u0000\u0007I am to blame for the loss of Lightbringer. The responsibility of retrieving it lies within me."
},
{
"id": 7767,
"string": "1\u0000\u0007I was the one who ignored Claidie's pleas to attempt negotiations with Rochefogne. If it were not for my foolish pride, none of this would ever have been brought upon San d'Oria!\u0007Father! Allow me the chance to redeem myself!"
},
{
"id": 7769,
"string": "1\u0000\u0007Father...!?"
},
{
"id": 7771,
"string": "1\u0000\u0007Father..."
}
]
},
{
"id": 21,
"dialogue": [
{
"id": 6752,
"string": "1\u0000\u0007Well done, \b.\u0007Do you wish to know what is written in the tome? The king is about to make an official announcement regarding its contents in the Great Hall."
},
{
"id": 6753,
"string": "1\u0000\u0007Father. Shall we begin?"
},
{
"id": 6758,
"string": "1\u0000\u0007The Dragon King's...4\u0001"
}
]
},
{
"id": 32,
"dialogue": [
{
"id": 7660,
"string": "1\u0000\u0007Long have we awaited your arrival, \b. Your assistance is required in a mission for the Kingdom."
},
{
"id": 7661,
"string": "1\u0000\u0007Where is the king, you ask? His Highness has retired to his quarters for the day. Recently, he has not been in the best of health."
},
{
"id": 7662,
"string": "1\u0000\u0007There is no need to be concerned with my father's condition. Now that Lightbringer has found its way back to San d'Oria, the king has begun to show great improvement. He should be back to his normal self within days."
},
{
"id": 7663,
"string": "1\u0000\u0007Now as for the reason you were summoned here: the papsque has called upon you to perform an investigation. His Holiness should be here shortly."
},
{
"id": 7667,
"string": "1\u0000\u0007A magical wall, you say?"
},
{
"id": 7670,
"string": "1\u0000\u0007Rochefogne...\u0007That scoundrel is up to something."
},
{
"id": 7673,
"string": "1\u0000\u0007Ah, and this is why you have requested the assistance of the adventurer \b."
},
{
"id": 7678,
"string": "1\u0000\u0007Your Holiness, it sounds as if you are quite skilled at burying things..."
},
{
"id": 7682,
"string": "1\u0000\u0007Yes.\u0007Well, \b is one of San d'Oria's finest adventurers. I am certain that ?[he\/she] will locate the mediums and succeed in destroying them."
},
{
"id": 7684,
"string": "1\u0000\u0007With that Rochefogne running about, we will be forced to postpone the Rites of Succession. We would not want another scene like at the coming-of-age ceremony. We have our father's health to think about."
},
{
"id": 7687,
"string": "1\u0000\u0007Claidie!\u0007You know quite well that you are not allowed to interfere with these meetings."
},
{
"id": 7690,
"string": "1\u0000\u0007Hah. I apologize, Claidie.\u0007Well, as long as you are present, let us hear your opinion on the situation at hand."
},
{
"id": 7692,
"string": "1\u0000\u0007That is, if you believe the scoundrel."
},
{
"id": 7695,
"string": "1\u0000\u0007Watch what you say, Claidie. Not all of us here are of the royal family."
},
{
"id": 7697,
"string": "1\u0000\u0007However, that decision was an important turning point in the war. The gallant battle waged by the citizens of Tavnazia dealt a forceful blow to the beastman forces and gave us enough time to prepare our armies."
},
{
"id": 7699,
"string": "1\u0000\u0007Tavnazia was destroyed when the beastmen's secret weapon malfunctioned. Nothing, not even the beastmen themselves, were left after that calamity."
},
{
"id": 7703,
"string": "1\u0000\u0007And that is why we must first capture him. Only then will we be able to clear up that which troubles our two sides."
},
{
"id": 7705,
"string": "1\u0000\u0007Hah. I will heed your wish. However, if he lays a hand on any of my knights, I will be forced to take action."
},
{
"id": 7707,
"string": "1\u0000\u0007\b, search out and destroy these ??mediums?? that the papsque mentioned earlier. Only by doing so will the Kingdom be safe from the treachery behind this fiendish plan."
},
{
"id": 7709,
"string": "1\u0000\u0007The ??Cadavres des Corneilles??! Pieuje, are you mad!?"
},
{
"id": 7712,
"string": "1\u0000\u0007Hmmm...\u0007Then do as you wish."
}
]
},
{
"id": 61,
"dialogue": [
{
"id": 7266,
"string": "1\u0000\u0007You have fulfilled my expectations. No, you surpassed them! For that we thank you. May you continue to serve the motherland."
},
{
"id": 7268,
"string": "1\u0000\u0007Hmph. Ever the complainer, I see."
},
{
"id": 7271,
"string": "1\u0000\u0007Father, let us not dwell on the petty details! The Shadow Lord is dead, and our greatest threat is no more. We must return our attention to San d'Oria herself."
},
{
"id": 7277,
"string": "1\u0000\u0007You speak of the Treasure of the Dragon King?"
},
{
"id": 7283,
"string": "1\u0000\u0007Father, I urge you to send expeditions to every corner of Vana'diel!"
}
]
},
{
"id": 62,
"dialogue": [
{
"id": 7866,
"string": "1\u0000\u0007As my father stated, you may be more suited than I to rule our kingdom..."
},
{
"id": 7867,
"string": "1\u0000\u0007However, whether or not I ever stand at the pinnacle of San d'Oria is not important. This situation with Rochefogne, Lightbringer, and the Orcs has taught me much of what I lack as a leader."
},
{
"id": 7868,
"string": "1\u0000\u0007Far too often I have relied on your bravery and loyalty. If it were not for your gallant actions, I would have surely perished in the Northlands."
},
{
"id": 7869,
"string": "1\u0000\u0007If your journeys ever bring you back here to San d'Oria, you will always be welcome. Not as an adventurer, but as a friend."
}
]
},
{
"id": 63,
"dialogue": [
{
"id": 6837,
"string": "1\u0000\u0007Thanks to your perseverance and commitment to the Kingdom, Lightbringer has been found, and now the Rites of Succession can be carried out."
},
{
"id": 6838,
"string": "1\u0000\u0007As long as the Treasure is in San d'Oria, the Kingdom will be safe--regardless of whether myself or my brother is the true heir to the throne."
},
{
"id": 6839,
"string": "1\u0000\u0007The Rites of Succession will be carried out soon. At that time, your services will once again be called upon."
}
]
},
{
"id": 64,
"dialogue": [
{
"id": 6795,
"string": "1\u0000\u0007So, my younger sister has finally come of age... I remember when my brother and I would sneak out of the chateau and search the city for presents to buy her."
},
{
"id": 6796,
"string": "1\u0000\u0007We would always be awed by the wonders of the city."
},
{
"id": 6797,
"string": "1\u0000\u0007One year, the king caught us sneaking out. Our mother tried talking to our father, but there was no easing his anger. It was then that I first feared my father."
},
{
"id": 6798,
"string": "1\u0000\u0007Our mother fell ill shortly after, and there was nothing my brother or I could do to save her. Maybe it was our lack of power to save our mother that made us enemies..."
},
{
"id": 6799,
"string": "1\u0000\u0007I apologize for my rambling. Perhaps I should journey out into the city and select my sister's gift..."
}
]
},
{
"id": 66,
"dialogue": [
{
"id": 8121,
"string": "1\u0000\u0007Hm? Oh, it's you, Halver. So rare to see you in this part of the chateau. Is there something that needs my attention?"
},
{
"id": 8123,
"string": "1\u0000\u0007A lady...? You mean a new guard for the courtyard, or some such?"
},
{
"id": 8125,
"string": "1\u0000\u0007..."
},
{
"id": 8127,
"string": "1\u0000\u0007She appears to be an adventurer...?"
},
{
"id": 8129,
"string": "1\u0000\u0007My preferences?\u0007Halver, what in blazes are you talking about?"
},
{
"id": 8132,
"string": "1\u0000\u0007So this is Father's doing...\u0007I do not recall speaking of my ??preferences?? to anyone, however..."
},
{
"id": 8134,
"string": "1\u0000\u0007C-Curilla...?\u0007What are you doing here?"
},