-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgarlaige_citadel_s.json
4418 lines (4320 loc) · 169 KB
/
garlaige_citadel_s.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": 164,
"name": "Garlaige Citadel [S]",
"actors": [
{
"id": 17449145,
"name": "Federation Dispenser",
"events": [
{
"id": 257,
"dialogue": [
]
}
]
},
{
"id": 17449146,
"name": "Federation Dispenser",
"events": [
{
"id": 258,
"dialogue": [
]
}
]
},
{
"id": 17449147,
"name": "Federation Dispenser",
"events": [
{
"id": 259,
"dialogue": [
]
}
]
},
{
"id": 17449379,
"name": "Boodlix",
"events": [
]
},
{
"id": 17449381,
"name": "Treasure Coffer",
"events": [
{
"id": 3000,
"dialogue": [
{
"id": 7996,
"string": "1\u0000\u0007Obtain this item?"
},
{
"id": 7997,
"string": "1\u0000\u0007Obtain this item?\u0007\u000bTake it.\u0007Leave it."
}
]
}
]
},
{
"id": 17449387,
"name": "",
"events": [
{
"id": 460,
"dialogue": [
{
"id": 7586,
"string": "1\u0000\u0007Register for a union?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7587,
"string": "1\u0000\u0007What will you do?\u0007\u000bNothing.\u0007Transfer to another union.\u0007Resign union membership."
},
{
"id": 7588,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7589,
"string": "1\u0000\u0007\f\u0000[Transfer unions\/Resign from your current union]?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7588,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7589,
"string": "1\u0000\u0007\f\u0000[Transfer unions\/Resign from your current union]?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7594,
"string": "1\u0000\u0007I am afraid that all unions are currently at their maximum enrollment, and unable to accept new recruits.\u0007For better or for worse, though, I suspect it shall not be long before we are in need of some new blood.\u0007Such is the nature of war..."
},
{
"id": 7590,
"string": "1\u0000\u0007Register for which union?\u0007\u000bNone.\u0007Adder Union (\n\u0000 ?\u0000[member\/members]).\u0007Bison Union (\n\u0001 ?\u0001[member\/members]).\u0007Coyote Union (\n\u0002 ?\u0002[member\/members]).\u0007Dhole Union (\n\u0003 ?\u0003[member\/members]).\u0007Eland Union (\n\u0004 ?\u0004[member\/members])."
}
]
}
]
},
{
"id": 17449415,
"name": "",
"events": [
{
"id": 43,
"dialogue": [
{
"id": 6355,
"string": "1\u0000\u0007The shared memories of generations of mooglekind flood into your mind, granting you the ability to decipher the cryptic glyphs of your \u0001\u00053????..."
},
{
"id": 6356,
"string": "1\u0000\u0007Review which trial?\u0007\u000bTrial \n\u0000.\u0007Trial \n\u0001.\u0007Trial \n\u0002.\u0007Trial \n\u0003.\u0007Trial \n\u0004.\u0007Trial \n\u0005.\u0007Trial \n\u0006.\u0007Trial \n\u0007.\u0007Trial \n\b.\u0007Trial \n\t.\u0007Moogle's Almanack.\u0007Return."
},
{
"id": 6361,
"string": "1\u0000\u0007You open the tome to the ??Moogle's Almanack?? chapter and peruse its weather prognostication pages."
},
{
"id": 6371,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017????."
},
{
"id": 6368,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017????. There is also the possibility of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6365,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6362,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017???? with occasional \u0001\u0005\u0018????. There is also a slight chance of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6372,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017????."
},
{
"id": 6369,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017????. There is also the possibility of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6366,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6363,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017???? with occasional \u0001\u0005\u0018????. There is also a slight chance of \u0001\u0005\u0018????, so caution is in order."
},
{
"id": 6373,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018????."
},
{
"id": 6370,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018????. There is also the possibility of \u0001\u0005\u0018????, so caution is advised."
},
{
"id": 6367,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6364,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018???? with occasional \u0001\u0005\u0018????. There is also a slight chance of \u0001\u0005\u0018????, so caution is in order."
}
]
}
]
},
{
"id": 17449418,
"name": "Lidaise, T.K.",
"events": [
{
"id": 250,
"dialogue": [
]
},
{
"id": 450,
"dialogue": [
{
"id": 7074,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 454,
"dialogue": [
]
}
]
},
{
"id": 17449419,
"name": "Ruediger, I.M.",
"events": [
{
"id": 251,
"dialogue": [
]
},
{
"id": 451,
"dialogue": [
{
"id": 7074,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 455,
"dialogue": [
]
}
]
},
{
"id": 17449420,
"name": "Tomoa-Nomoa, C.C.",
"events": [
{
"id": 252,
"dialogue": [
]
},
{
"id": 452,
"dialogue": [
{
"id": 7074,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 456,
"dialogue": [
]
}
]
},
{
"id": 17449425,
"name": "Darden, C.A.",
"events": [
{
"id": 453,
"dialogue": [
{
"id": 7074,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 457,
"dialogue": [
{
"id": 7087,
"string": "1\u0000\u0007Greetings. I am \t of the San d'Orian Provincial Knights."
},
{
"id": 7088,
"string": "1\u0000\u0007Greetings. I am \t of the Bastokan Legion."
},
{
"id": 7089,
"string": "1\u0000\u0007Greetings. I am \t of the Federation of Windurst."
},
{
"id": 7090,
"string": "1\u0000\u0007Greetings. I am \t, Campaign Arbiter for the Allied Forces."
},
{
"id": 7091,
"string": "1\u0000\u0007What can I help you with?\u0007\u000bNothing.\u0007Performance assessment.\u0007New Allied Tags.\u0007Temporary items.\u0007Union registration.\u0007Teleportation.\u0007Information on the Allied Campaign."
},
{
"id": 7097,
"string": "1\u0000\u0007You've already undergone an evaluation for this battle, or had you forgotten?\u0007As much as I'd like to, I'm forbidden from providing you with a new set of Allied Taegs until the next battle begins."
},
{
"id": 7137,
"string": "\u0000!\u0000\u0007I am sorry, \b, but your campaign medal has expired. I cannot issue tags to anyone not authorized by the Allied Forces. Return to your nation's capital and speak with a Campaign Evaluation Official."
},
{
"id": 7137,
"string": "\u0000!\u0000\u0007I am sorry, \b, but your campaign medal has expired. I cannot issue tags to anyone not authorized by the Allied Forces. Return to your nation's capital and speak with a Campaign Evaluation Official."
},
{
"id": 7094,
"string": "1\u0000\u0007Understood. I shall now judge your performance and award the proper remuneration."
},
{
"id": 7096,
"string": "1\u0000\u0007Understood. I shall prepare a new set of tags for you now."
},
{
"id": 7126,
"string": "1\u0000\u0007Let me show you the list of items currently available to you."
},
{
"id": 7127,
"string": "1\u0000\u0007Select a category:\u0007\u000bQuit.\u0007\n\u0000-Note Items.\u0007\n\u0001-Note Items.\u0007\n\u0002-Note Items."
},
{
"id": 7128,
"string": "1\u0000\u0007Which item would you like to see?\u0007\u000bQuit.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????"
},
{
"id": 7129,
"string": "1\u0000\u0007You currently possess \n' Allied Note?'[\/s]."
},
{
"id": 7130,
"string": "1\u0000\u0007Proceed with the transaction?\u0007\u000bYes.\u0007No."
},
{
"id": 7144,
"string": "y.\u0000\u0007Register for a union?\u0007\u000bYes.\u0007No."
},
{
"id": 7587,
"string": "1\u0000\u0007What will you do?\u0007\u000bNothing.\u0007Transfer to another union.\u0007Resign union membership."
},
{
"id": 7588,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7145,
"string": "1\u0000\u0007\f\u0000[Transfer\/Resign] from your current union?\u0007\u000bYes.\u0007No."
},
{
"id": 7588,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7145,
"string": "1\u0000\u0007\f\u0000[Transfer\/Resign] from your current union?\u0007\u000bYes.\u0007No."
},
{
"id": 7594,
"string": "1\u0000\u0007I am afraid that all unions are currently at their maximum enrollment, and unable to accept new recruits.\u0007For better or for worse, though, I suspect it shall not be long before we are in need of some new blood.\u0007Such is the nature of war..."
},
{
"id": 7590,
"string": "1\u0000\u0007Register for which union?\u0007\u000bNone.\u0007Adder Union (\n\u0000 ?\u0000[member\/members]).\u0007Bison Union (\n\u0001 ?\u0001[member\/members]).\u0007Coyote Union (\n\u0002 ?\u0002[member\/members]).\u0007Dhole Union (\n\u0003 ?\u0003[member\/members]).\u0007Eland Union (\n\u0004 ?\u0004[member\/members])."
},
{
"id": 7112,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7082,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7112,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7082,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7112,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7082,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7112,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7113,
"string": "1\u0000\u0007Complete transaction and return to capital?\u0007\u000bYes.\u0007No."
},
{
"id": 7092,
"string": "1\u0000\u0007What would you like to know?\u0007\u000bNothing. I'm sorry.\u0007About performance assessment.\u0007About Allied Tags.\u0007About temporary items.\u0007About Unions."
},
{
"id": 7098,
"string": "1\u0000\u0007Anyone wearing Allied Tags while participating in a campaign battle will be judged on their overall performance."
},
{
"id": 7099,
"string": "1\u0000\u0007Soldiers will be evaluated not only on their fighting skills, but also on how much they contribute to the efforts of their allies through means such as healing and enhancing."
},
{
"id": 7100,
"string": "1\u0000\u0007However, beware that if you leave the area before being assessed, you will be deemed a deserter and will forfeit all rewards earned that day."
},
{
"id": 7101,
"string": "1\u0000\u0007Also, while there are no immediate penalties for being knocked out, falling in battle will significantly lower the score given to you."
},
{
"id": 7102,
"string": "1\u0000\u0007When you are ready to receive compensation for your work on the field, return to me and I shall assess your performance and provide you with your payment."
},
{
"id": 7111,
"string": "1\u0000\u0007That is all."
},
{
"id": 7103,
"string": "1\u0000\u0007Allied Tags are a special type of identification given to all participants of Allied Campaign battles."
},
{
"id": 7104,
"string": "1\u0000\u0007There are benefits, as well as drawbacks, to wearing the tags. One of the benefits is that in the case you are knocked out on the battlefield, you will not lose any experience points."
},
{
"id": 7105,
"string": "1\u0000\u0007However, some of the drawbacks include the inability to improve skills and earn experience points for individual kills, as well as the right to loot fallen enemies."
},
{
"id": 7111,
"string": "1\u0000\u0007That is all."
},
{
"id": 7106,
"string": "1\u0000\u0007Temporary items can be purchased in exchange for Allied Notes."
},
{
"id": 7107,
"string": "1\u0000\u0007There are several different varieties of items, but they all have one thing in common--they can only be used on the battlefield they were issued."
},
{
"id": 7108,
"string": "1\u0000\u0007It is highly recommended that you first survey a battle's conditions and then select the supplies that you believe will benefit you most."
},
{
"id": 7109,
"string": "1\u0000\u0007Please remember that all temporary items you carry on your person will be confiscated in the event that you leave the area."
},
{
"id": 7111,
"string": "1\u0000\u0007That is all."
},
{
"id": 7138,
"string": "1\u0000\u0007Oh ho! Keen to join a Union, are we?\u0007Very well. Listen up and I shall tell you all you need to know."
},
{
"id": 7139,
"string": "1\u0000\u0007In order to better coordinate Allied efforts against the beastman menace, we have instituted a system of ad hoc tactical regiments called ??Unions.?? With five units to a battlefield, union registration is open to any proven soldier in possession of Allied Tags."
},
{
"id": 7140,
"string": "1\u0000\u0007In return for their aid in advancing the war effort, union registrants will be eligible to earn a share of the spoils of war."
},
{
"id": 7141,
"string": "1\u0000\u0007Needless to say, the choicest rewards will be reserved for those unions which make the greatest contributions in combat.\u0007Prove your mettle on the field of battle, and you will earn glory for your union, as well as a sizable bounty of your own."
},
{
"id": 7142,
"string": "1\u0000\u0007Be forewarned that your commitment to your union comes first and foremost.\u0007In the aftermath of battle, you will not be permitted to reap rewards from your individual exploits until your union has distributed its plunder."
},
{
"id": 7111,
"string": "1\u0000\u0007That is all."
}
]
}
]
},
{
"id": 17449453,
"name": "Crematory Hatch",
"events": [
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
{
"id": 7628,
"string": "1\u0000\u0007Leave the incinerator?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17449456,
"name": "Heavy Iron Door",
"events": [
{
"id": 1,
"dialogue": [
]
},
{
"id": 33,
"dialogue": [
]
}
]
},
{
"id": 17449485,
"name": "Ramblix",
"events": [
{
"id": 0,
"dialogue": [
{
"id": 7148,
"string": "1\u0000\u0007Oh my Gob! You're one of those adventurerurers, aren't ya?\u0007You got nothin' on me, ?[man.\/lady.] I was just mindin' my own businesesess, lookin' for junk an' stuff."
},
{
"id": 7149,
"string": "1\u0000\u0007Hey, watch out. You don't wanna fight me. I'll turn you into meat jerky!\u0007Wait, how about you and me be friends instead? Sound good?"
},
{
"id": 7150,
"string": "1\u0000\u0007I travel all over the world and hear lots of differererent stories. I even hear your stories. I can tell you one, if you want."
},
{
"id": 7603,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 7604,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007Red recommendation letter.\u0007In a Haze of Glory(pt.1).\u0007In a Haze of Glory(pt.2).\u0007In a Haze of Glory(pt.3)."
},
{
"id": 7152,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7605,
"string": "1\u0000\u0007"
},
{
"id": 7152,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7606,
"string": "1\u0000\u0007"
},
{
"id": 7152,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7607,
"string": "1\u0000\u0007"
},
{
"id": 7152,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7152,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7151,
"string": "1\u0000\u0007Now, listen close..."
}
]
}
]
},
{
"id": 17449487,
"name": "???",
"events": [
]
},
{
"id": 17449488,
"name": "",
"events": [
]
},
{
"id": 17449489,
"name": "",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7610,
"string": "1\u0000\u0007Have I piqued your interest?\u0007\u000bYes!\u0007No."
},
{
"id": 7610,
"string": "1\u0000\u0007Have I piqued your interest?\u0007\u000bYes!\u0007No."
},
{
"id": 7623,
"string": "1\u0000\u0007?@?@ "
}
]
}
]
},
{
"id": 17449490,
"name": "Randecque",
"events": [
{
"id": 1,
"dialogue": [
{
"id": 7612,
"string": "1\u0000\u0007If it is not the ??adventurer??! Had you a change of heart, eh?"
},
{
"id": 7608,
"string": "1\u0000\u0007State your business here, or I shall toss you in the citadel's dungeons and leave you to rot among the corpses."
},
{
"id": 7609,
"string": "1\u0000\u0007An adventurer, eh? Well, if it is adventure you seek, I may have a means with which you could put your skills to use."
},
{
"id": 7611,
"string": "1\u0000\u0007That is quite a shame. Now begone before I lose my patience with you."
},
{
"id": 7613,
"string": "1\u0000\u0007Excellent.\u0007If I am not mistaken, the Kingdom is eagerly searching for volunteers to join the Knights of the Iron Ram. Let me pen you a recommendation."
},
{
"id": 7614,
"string": "1\u0000\u0007One moment, while I fetch a piece of parchment."
},
{
"id": 7615,
"string": "1\u0000\u0007Take this to the San d'Orian capital and present it to Captain Mainchelite."
},
{
"id": 7617,
"string": "s.\u0000\u0007Take care, as the journey to the capital will not be an easy one."
},
{
"id": 7618,
"string": "1\u0000\u0007May the divine light of the Goddess guide you."
}
]
},
{
"id": 2,
"dialogue": [
{
"id": 7619,
"string": "1\u0000\u0007Take that \u0001\u00053???? to the San d'Orian capital and present it to Captain Mainchelite."
},
{
"id": 7620,
"string": "1\u0000\u0007If my memory serves me well, I seem to recall an initiation trial was required of all new recruits. Oh, but you need worry not--the assessment was nothing more than formality."
}
]
},
{
"id": 3,
"dialogue": [
{
"id": 7621,
"string": "1\u0000\u0007Well, congratulations, recruit! I look forward to hearing the bards sing of your heroic deeds!"
}
]
},
{
"id": 12,
"dialogue": [
{
"id": 7617,
"string": "s.\u0000\u0007Take care, as the journey to the capital will not be an easy one."
},
{
"id": 7618,
"string": "1\u0000\u0007May the divine light of the Goddess guide you."
}
]
}
]
},
{
"id": 17449491,
"name": "Rarcasmeault",
"events": [
{
"id": 4,
"dialogue": [
{
"id": 7656,
"string": "1\u0000\u0007No unauthorized personnel are permit--Oh, it's you again..."
}
]
},
{
"id": 6,
"dialogue": [
{
"id": 7629,
"string": "1\u0000\u0007What? Ya want something?"
},
{
"id": 7630,
"string": "1\u0000\u0007Lemme guess, you wanna get your hands on \u0001\u00056????. Am I right?"
},
{
"id": 7633,
"string": "1\u0000\u0007Fine, I'll see what I can do. Gimme a minute."
},
{
"id": 7632,
"string": "1\u0000\u0007Well then, stop bothering me! You got no idea what it's like to be this busy."
},
{
"id": 7634,
"string": "1\u0000\u0007...Hm?"
},
{
"id": 7635,
"string": "1\u0000\u0007That figures. Looks like we're plumb outta maps."
},
{
"id": 7636,
"string": "1\u0000\u0007Of all the times..."
},
{
"id": 7637,
"string": "1\u0000\u0007Well, since you're here, I may as well get some use outta ya."
},
{
"id": 7638,
"string": "1\u0000\u0007Oh, don't gimme that look. Get over yourself. I'll go and get ya your map while you're keeping busy."
},
{
"id": 7639,
"string": "1\u0000\u0007Ya see, a while ago I made the mistake of putting \u0001\u00056???? in the Firesand Storeroom."
},
{
"id": 7640,
"string": "1\u0000\u0007I mean, come on. \"Firesand\" and \"Firepower.\" How am I not supposed to get those mixed up?"
},
{
"id": 7641,
"string": "1\u0000\u0007So look, just go get that and bring it back here for me. And that's it."
},
{
"id": 7642,
"string": "1\u0000\u0007...What? I said that's it. Go fetch me the \u0001\u00053???? out of the Firesand Storeroom."
}
]
},
{
"id": 8,
"dialogue": [
{
"id": 7643,
"string": "1\u0000\u0007You get your hands on that \u0001\u00053???? from the Firesand Storeroom yet? I'll have your map ready by the time you bring it back."
}
]
},
{
"id": 9,
"dialogue": [
{
"id": 7645,
"string": "e.\u0000\u0007Hey, that's the stuff! The \u0001\u00053????, just like I asked. You're alright...for an adventurer."
},
{
"id": 7646,
"string": "1\u0000\u0007..."
},
{
"id": 7647,
"string": "1\u0000\u0007I know I asked you to help me, but truth be told..."
},
{
"id": 7648,
"string": "1\u0000\u0007I checked everywhere I could think of and just couldn't find you a map."
},
{
"id": 7649,
"string": "1\u0000\u0007...Oh, wait!"
},
{
"id": 7651,
"string": "e.\u0000\u0007...Found one."
},
{
"id": 7652,
"string": "1\u0000\u0007Heh, guess I had one after all.\u0007Here you go, your very own \u0001\u00053????."
},
{
"id": 7654,
"string": ".\u0000 \u0007Heh, who woulda thought, eh?\u0007It was here the whole time. Guess I just forgot sticking it on there.\u0007Well, say ??thank you.??"
}
]
}
]
},
{
"id": 17449492,
"name": "???",
"events": [
{
"id": 5,
"dialogue": [
]
},
{
"id": 7,
"dialogue": [
]
}
]
},
{
"id": 17449493,
"name": "",
"events": [
{
"id": 4,
"dialogue": [
]
},
{
"id": 5,
"dialogue": [
{
"id": 7657,
"string": "1\u0000\u0007A number of cases are lined up on the table here."
}
]
},
{
"id": 6,
"dialogue": [
{
"id": 7631,
"string": "1\u0000\u0007Is he right?\u0007\u000bYes, that's exactly what I want.\u0007Actually, no."
}
]
},
{
"id": 7,
"dialogue": [
{
"id": 7644,
"string": "1\u0000\u0007A sign reading \"Keep Away From Fire!\" is affixed to the cas"
}
]
},
{
"id": 8,
"dialogue": [
]
},
{
"id": 9,
"dialogue": [
{
"id": 7650,
"string": "1\u0000\u0007\u001f\u000fRarcasmeault tears the \"Keep Away From Fire!\" sign from the cas"
},
{
"id": 7653,
"string": "1\u0000\u0007A crude map is drawn on the backside of the sign"
}
]
}
]
},
{
"id": 17449496,
"name": "Andalliot",
"events": [
{
"id": 13,
"dialogue": [
{
"id": 7665,
"string": "1\u0000\u0007Hey, hey, hey! You can't be here!\u0007How did you get past the guards?"
}
]
},
{
"id": 31,
"dialogue": [
]
},
{
"id": 33,
"dialogue": [
]
}
]
},
{
"id": 17449497,
"name": "Diordinne",
"events": [
{
"id": 14,
"dialogue": [
{
"id": 7666,
"string": "1\u0000\u0007After careful deliberation, our military strategists have discerned that the Beastman Confederate's main target is Jeuno.\u0007Not that any of us think they will be undertaking any form of structured offensive..."
}
]
},
{
"id": 31,
"dialogue": [
{
"id": 7892,
"string": "1\u0000\u0007What?\u0007A group of child knights, you say?"
},
{
"id": 7893,
"string": "1\u0000\u0007Hmm...\u0007I know not of the ones you seek, but there are indeed squires, refugees, and even children who have taken residence within this stronghold since the outbreak of the war."
},
{
"id": 7894,
"string": "1\u0000\u0007Now, have you some manner of documentation identifying you as the guardian of these children?"
},
{
"id": 7897,
"string": "1\u0000\u0007I beg your pardon, Sir Vailanice. Is this person, too, a member of your extended family?"
},
{
"id": 7910,
"string": "1\u0000\u0007Sir Vailanice, if I could be forgiven for my boldness..."
},
{
"id": 7911,
"string": "1\u0000\u0007Are there not more suitable playgrounds than here for the children?"
},
{
"id": 7913,
"string": "1\u0000\u0007That, I deny not, but..."
},
{
"id": 7921,
"string": "1\u0000\u0007Could this be the handiwork of Beastman Confederate elite?"
},
{
"id": 7926,
"string": "1\u0000\u0007At once, sir.\u0007And...I mean not to unnerve you, sir, but I sense an ill foreboding. Please, take all care."
},
{
"id": 7725,
"string": "1\u0000\u0007Hmph...\u0007To where have all of you been traipsing?"
},
{
"id": 7726,
"string": "1\u0000\u0007Sir Vailanice would give me a right royal hiding if misfortune were to befall one of his ??relatives.?? Have you no consideration?"
},
{