-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcastle_oztroja_s.json
2494 lines (2396 loc) · 74.7 KB
/
castle_oztroja_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": 99,
"name": "Castle Oztroja [S]",
"actors": [
{
"id": 17183472,
"name": "",
"events": [
{
"id": 101,
"dialogue": [
]
},
{
"id": 102,
"dialogue": [
]
},
{
"id": 103,
"dialogue": [
]
},
{
"id": 460,
"dialogue": [
{
"id": 7654,
"string": "1\u0000\u0007Register for a union?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7655,
"string": "1\u0000\u0007What will you do?\u0007\u000bNothing.\u0007Transfer to another union.\u0007Resign union membership."
},
{
"id": 7656,
"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": 7657,
"string": "1\u0000\u0007\f\u0000[Transfer unions\/Resign from your current union]?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7656,
"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": 7657,
"string": "1\u0000\u0007\f\u0000[Transfer unions\/Resign from your current union]?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7662,
"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": 7658,
"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": 17183500,
"name": "",
"events": [
{
"id": 113,
"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": 120,
"dialogue": [
{
"id": 8365,
"string": "r!\u0000\u0007?????????n?????????H\u0007\u000b??????\u0007?E?B???_?X?P?P\u0007?E?B???_?X?P?Q"
}
]
}
]
},
{
"id": 17183503,
"name": "Yaibroux, T.K.",
"events": [
{
"id": 250,
"dialogue": [
]
},
{
"id": 450,
"dialogue": [
{
"id": 7154,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 454,
"dialogue": [
]
}
]
},
{
"id": 17183504,
"name": "Ortwin, I.M.",
"events": [
{
"id": 251,
"dialogue": [
]
},
{
"id": 451,
"dialogue": [
{
"id": 7154,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 455,
"dialogue": [
]
}
]
},
{
"id": 17183505,
"name": "Ringu-Tangu, C.C.",
"events": [
{
"id": 252,
"dialogue": [
]
},
{
"id": 452,
"dialogue": [
{
"id": 7154,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 456,
"dialogue": [
]
}
]
},
{
"id": 17183510,
"name": "Ulmer, C.A.",
"events": [
{
"id": 453,
"dialogue": [
{
"id": 7154,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 457,
"dialogue": [
{
"id": 7167,
"string": "1\u0000\u0007Greetings. I am \t of the San d'Orian Provincial Knights."
},
{
"id": 7168,
"string": "1\u0000\u0007Greetings. I am \t of the Bastokan Legion."
},
{
"id": 7169,
"string": "1\u0000\u0007Greetings. I am \t of the Federation of Windurst."
},
{
"id": 7170,
"string": "1\u0000\u0007Greetings. I am \t, Campaign Arbiter for the Allied Forces."
},
{
"id": 7171,
"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": 7177,
"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": 7217,
"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": 7217,
"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": 7174,
"string": "1\u0000\u0007Understood. I shall now judge your performance and award the proper remuneration."
},
{
"id": 7176,
"string": "1\u0000\u0007Understood. I shall prepare a new set of tags for you now."
},
{
"id": 7206,
"string": "1\u0000\u0007Let me show you the list of items currently available to you."
},
{
"id": 7207,
"string": "1\u0000\u0007Select a category:\u0007\u000bQuit.\u0007\n\u0000-Note Items.\u0007\n\u0001-Note Items.\u0007\n\u0002-Note Items."
},
{
"id": 7208,
"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": 7209,
"string": "1\u0000\u0007You currently possess \n' Allied Note?'[\/s]."
},
{
"id": 7210,
"string": "1\u0000\u0007Proceed with the transaction?\u0007\u000bYes.\u0007No."
},
{
"id": 7224,
"string": "y.\u0000\u0007Register for a union?\u0007\u000bYes.\u0007No."
},
{
"id": 7655,
"string": "1\u0000\u0007What will you do?\u0007\u000bNothing.\u0007Transfer to another union.\u0007Resign union membership."
},
{
"id": 7656,
"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": 7225,
"string": "1\u0000\u0007\f\u0000[Transfer\/Resign] from your current union?\u0007\u000bYes.\u0007No."
},
{
"id": 7656,
"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": 7225,
"string": "1\u0000\u0007\f\u0000[Transfer\/Resign] from your current union?\u0007\u000bYes.\u0007No."
},
{
"id": 7662,
"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": 7658,
"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": 7192,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7162,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7192,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7162,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7192,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7162,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7192,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7193,
"string": "1\u0000\u0007Complete transaction and return to capital?\u0007\u000bYes.\u0007No."
},
{
"id": 7172,
"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": 7178,
"string": "1\u0000\u0007Anyone wearing Allied Tags while participating in a campaign battle will be judged on their overall performance."
},
{
"id": 7179,
"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": 7180,
"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": 7181,
"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": 7182,
"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": 7191,
"string": "1\u0000\u0007That is all."
},
{
"id": 7183,
"string": "1\u0000\u0007Allied Tags are a special type of identification given to all participants of Allied Campaign battles."
},
{
"id": 7184,
"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": 7185,
"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": 7191,
"string": "1\u0000\u0007That is all."
},
{
"id": 7186,
"string": "1\u0000\u0007Temporary items can be purchased in exchange for Allied Notes."
},
{
"id": 7187,
"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": 7188,
"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": 7189,
"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": 7191,
"string": "1\u0000\u0007That is all."
},
{
"id": 7218,
"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": 7219,
"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": 7220,
"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": 7221,
"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": 7222,
"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": 7191,
"string": "1\u0000\u0007That is all."
}
]
}
]
},
{
"id": 17183511,
"name": "Brass Door",
"events": [
{
"id": 104,
"dialogue": [
]
}
]
},
{
"id": 17183546,
"name": "Collapsing Floor",
"events": [
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17183547,
"name": "Ethereal Spout",
"events": [
{
"id": 32003,
"dialogue": [
]
}
]
},
{
"id": 17183556,
"name": "Brass Door",
"events": [
{
"id": 111,
"dialogue": [
]
}
]
},
{
"id": 17183558,
"name": "Torch Stand",
"events": [
{
"id": 10,
"dialogue": [
{
"id": 8097,
"string": "1\u0000\u0007Light the torch?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17183559,
"name": "Torch Stand",
"events": [
{
"id": 11,
"dialogue": [
{
"id": 8097,
"string": "1\u0000\u0007Light the torch?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17183560,
"name": "Torch Stand",
"events": [
{
"id": 12,
"dialogue": [
{
"id": 8097,
"string": "1\u0000\u0007Light the torch?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17183561,
"name": "Torch Stand",
"events": [
{
"id": 13,
"dialogue": [
{
"id": 8097,
"string": "1\u0000\u0007Light the torch?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17183563,
"name": "Writhing Flame",
"events": [
{
"id": 103,
"dialogue": [
]
}
]
},
{
"id": 17183564,
"name": "",
"events": [
{
"id": 100,
"dialogue": [
]
}
]
},
{
"id": 17183565,
"name": "Robel-Akbel",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 8109,
"string": "1\u0000\u0007What's going on here!?\u0007Ghyo of the Tigresses and Romaa of the Cobras...\u0007Who's guarding Fort Karugo-Narugo!?"
},
{
"id": 8113,
"string": "1\u0000\u0007Keep your explanation brief!"
},
{
"id": 8116,
"string": "1\u0000\u0007You're certain?"
},
{
"id": 8120,
"string": "1\u0000\u0007I'm surprised this type of equipment appeared so early..."
},
{
"id": 8121,
"string": "1\u0000\u0007Was there anything else gleaned from the quipus?"
},
{
"id": 8122,
"string": "1\u0000\u0007??Manifest, lead us to the city.\u0007Windurst...will fall??...?"
},
{
"id": 8126,
"string": "1\u0000\u0007Fascinating.\u0007So the Yagudo leader has joined the main thrust towards the city.\u0007That explains why the castle is so empty..."
},
{
"id": 8128,
"string": "1\u0000\u0007No, I think I understand the game now.\u0007First, we return to Karugo-Narugo."
},
{
"id": 8129,
"string": "1\u0000\u0007Romaa, I need you to head to Windurst after all.\u0007Rouse the Anacondas and send them to the fort with all haste!"
}
]
}
]
},
{
"id": 17183566,
"name": "Ghyo Molkot",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 8104,
"string": "1\u0000\u0007Is that it for this floor?"
},
{
"id": 8106,
"string": "1\u0000\u0007Where are all the hulkin' elite troops hidin'?\u0007We've fought nothin' but rrrank and file..."
},
{
"id": 8110,
"string": "1\u0000\u0007That puffed-up peabrrrain from the Sagittarian War Warlocks sent us here under the Star Sibyl's name.\u0007We thought we had no choice!"
},
{
"id": 8123,
"string": "1\u0000\u0007Manifest?\u0007What's that supposed to mean?"
}
]
}
]
},
{
"id": 17183567,
"name": "Nhiko Rhaabel",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 8105,
"string": "1\u0000\u0007Looks like it.\u0007No sign of strrragglers..."
},
{
"id": 8108,
"string": "1\u0000\u0007Huh?\u0007Romaa, what are you and \b doin' here?"
},
{
"id": 8112,
"string": "1\u0000\u0007That's rrright.\u0007And there was this--"
},
{
"id": 8119,
"string": "1\u0000\u0007We left prrretty much nothing but the little warlock guys at the fort.\u0007I'm guessin' they aren't too handy with swords or bows..."
},
{
"id": 8124,
"string": "1\u0000\u0007Isn't that what they call the Yagudo deity...?"
}
]
}
]
},
{
"id": 17183568,
"name": "Romaa Mihgo",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 8107,
"string": "1\u0000\u0007Ghyo!\u0007We need you back at the fort!"
},
{
"id": 8115,
"string": "1\u0000\u0007The fort is in big trrrouble!"
},
{
"id": 8117,
"string": "1\u0000\u0007Here's the situation..."
},
{
"id": 8125,
"string": "1\u0000\u0007Tzee Xicu the Manifest!"
},
{
"id": 8127,
"string": "1\u0000\u0007When you're done hypothesizin', how about we mobilize our forces and march back to Windurst!?"
},
{
"id": 8130,
"string": "1\u0000\u0007Understood.\u0007I'll pass on the order to Perih."
},
{
"id": 8131,
"string": "1\u0000\u0007\b, return to Karugo-Narugo with Ghyo and the others.\u0007They're gonna need all the help they can get!"
}
]
},
{
"id": 104,
"dialogue": [
{
"id": 8184,
"string": "1\u0000\u0007One of the prisoners!\u0007Are you all right!?"
},
{
"id": 8188,
"string": "1\u0000\u0007You can rrrest easy, friend. You'll be safe now.\u0007And don't you worry; we'll see to your companions."
}
]
},
{
"id": 105,
"dialogue": [
{
"id": 8192,
"string": "1\u0000\u0007Can you hear us, frrriend?\u0007We've come to rescue you!"
},
{
"id": 8194,
"string": "1\u0000\u0007Our regiment has made camp in the Meriphataud Mountains. You will be safe there.\u0007Can you make the trip alone?"
}
]
},
{
"id": 106,
"dialogue": [
]
},
{
"id": 107,
"dialogue": [
{
"id": 8202,
"string": "1\u0000\u0007You there! Can you stand?"
},
{
"id": 8207,
"string": "1\u0000\u0007Yeah, yeah. Are we done here alrrready?\u0007Here's \u0001\u0001\u0001 \u0001\u0005$???? and \u0001\u0001\u0001 \u0001\u0005$????. Just try not to get yourself killed on the way out, okay?"
},
{
"id": 8211,
"string": "1\u0000\u0007Is that everyone?"
},
{
"id": 8214,
"string": "1\u0000\u0007Syu is up there, you say!?"
},
{
"id": 8216,
"string": "1\u0000\u0007Grrrrr... Don't you worry.\u0007We'll see to yer friends, and I'll personally ensure that the crows pay for their vile deeds."
},
{
"id": 8218,
"string": "1\u0000\u0007That noise...it came from above!"
},
{
"id": 8223,
"string": "1\u0000\u0007And what of our companions, Lehko? There are wounded among them.\u0007Someone must escorrrt them to safety. To the capital--"
},
{
"id": 8225,
"string": "1\u0000\u0007Jeuno?"
},
{
"id": 8228,
"string": "1\u0000\u0007Yes, we must take proper prrrecautions this time.\u0007I believe I can spare a couple o' my girls as backup."
},
{
"id": 8229,
"string": "1\u0000\u0007Lehko. I'll escort them back to camp for the meantime.\u0007They'll be needing a good meal and rest before they depart."
},
{
"id": 8231,
"string": "1\u0000\u0007Hm? What's this now...?"
},
{
"id": 8232,
"string": "1\u0000\u0007A key? And yet, different from our \u0001\u0005#????...\u0007Could one of the birdmen have drrropped it?"
},
{
"id": 8236,
"string": "1\u0000\u0007Well, Lehko, Perih, \b... Looks like you're in business.\u0007Now go teach those birdmen a lesson they won't soon forrrget."
},
{
"id": 8237,
"string": "1\u0000\u0007Should anything happen to that key, come and see me back in Meriphataud.\u0007I'll have our quartermaster whip up a spare."
}
]
}
]
},
{
"id": 17183569,
"name": "Prido-Homildo",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 8111,
"string": "1\u0000\u0007The Star Sibyl...?"
}
]
}
]
},
{
"id": 17183570,
"name": "Boo Kyeko the Ironfaith",
"events": [
{
"id": 100,
"dialogue": [
]
},
{
"id": 101,
"dialogue": [
{
"id": 8132,
"string": "1\u0000\u0007Kyah-kyah. \u0007What brings you to our nest, smoothskin?"
},
{
"id": 8133,
"string": "1\u0000\u0007You seek \u0001\u00053????, you say? Kyah-hah-hah!"
},
{
"id": 8134,
"string": "1\u0000\u0007Squawk! A fool you are.\u0007Fool-fool-fool. \u0007You would trespass so deep into our holy ground in search of some trinket from an old hen's tale?"
},
{
"id": 8135,
"string": "1\u0000\u0007Kyah!\u0007You will die like the infidel you are!"
},
{
"id": 8137,
"string": "1\u0000\u0007Kakwah?\u0007My lord?"
},
{
"id": 8140,
"string": "1\u0000\u0007...Kyah."
}
]
}
]
},
{
"id": 17183571,
"name": "Kaa Toru the Just",
"events": [
{
"id": 101,
"dialogue": [
{
"id": 8136,
"string": "1\u0000\u0007Lower your weapon."
},
{
"id": 8138,
"string": "1\u0000\u0007Have you forgotten the pact!?\u0007Kyah! Your insolence knows no bounds!"
},
{
"id": 8139,
"string": "1\u0000\u0007Are we Yagudo not the most proud and honorable of the races?\u0007Pray that I do not inform Tzee Xicu of your affront!"
},
{
"id": 8141,
"string": "1\u0000\u0007Yes, I know the relic of which you speak, entrusted to us by our ??friends?? of old.\u0007It is an ancient, ancient tale, written off by all as pure fable."
},
{
"id": 8142,
"string": "1\u0000\u0007All save for I...for I am Kaa Toru the Just."
},
{
"id": 8143,
"string": "1\u0000\u0007I give fair hearing to all who come before me, even a smoothskin such as you."
},
{
"id": 8144,
"string": "1\u0000\u0007But in exchange for my fair judgment, my demands are stern."
},
{
"id": 8145,
"string": "1\u0000\u0007Bring proof that you are truly the promised one, and your cause shall be heard."
},
{
"id": 8146,
"string": "1\u0000\u0007But be forewarned.\u0007If your heart is deemed deceitful, my brethren will pick the flesh from your bones.\u0007Kyah!"
}
]
},
{
"id": 102,
"dialogue": [
{
"id": 8147,
"string": "1\u0000\u0007I give fair hearing to all who come before me, even a smoothskin such as you."
},
{
"id": 8148,
"string": "1\u0000\u0007Bring proof that you are truly the promised one, and your cause shall be heard."
},
{
"id": 8149,
"string": "1\u0000\u0007But be forewarned.\u0007If your heart is deemed deceitful, my brethren will pick the flesh from your bones.\u0007Kyah!"
}
]
},
{
"id": 103,
"dialogue": [
{
"id": 8150,
"string": "1\u0000\u0007I see."
},
{
"id": 8151,
"string": "1\u0000\u0007I deem you worthy.\u0007You are indeed ?[he\/she] of whom the legends spoke."
},
{
"id": 8152,
"string": "1\u0000\u0007Take it.\u0007It is yours."
},
{
"id": 8153,
"string": "1\u0000\u0007Do not fool yourself into thinking that anything has changed.\u0007You and your kind remain our bitter enemy. So were you yesterday, and so shall you be tomorrow."
},
{
"id": 8154,
"string": "1\u0000\u0007I performed my duty.\u0007That is all."
},
{
"id": 8155,
"string": "1\u0000\u0007Now begone from our holy ground at once.\u0007You will find no more favors here.\u0007Kyah-kyah!"
}
]
}
]
},
{
"id": 17183572,
"name": "Allied Commissary",
"events": [
{
"id": 250,
"dialogue": [
]
},
{
"id": 251,
"dialogue": [
]
},
{
"id": 252,
"dialogue": [
]
}
]
},