-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patharrapago_reef.json
6591 lines (6471 loc) · 235 KB
/
arrapago_reef.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": 54,
"name": "Arrapago Reef",
"actors": [
{
"id": 16998902,
"name": "",
"events": [
{
"id": 239,
"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": 16998917,
"name": "Irurusi",
"events": [
{
"id": 2,
"dialogue": [
{
"id": 7982,
"string": "1\u0000\u0007??????\u0007?C?????V?????????L???????I"
},
{
"id": 7984,
"string": "1\u0000\u0007?~?b?V???????????I???????I\u0007\u000b41\u000742\u000743"
},
{
"id": 7985,
"string": "1\u0000\u0007???L?????`?F?b?N??"
}
]
}
]
},
{
"id": 16998918,
"name": "Ashutarihu",
"events": [
{
"id": 3,
"dialogue": [
{
"id": 7983,
"string": "1\u0000\u0007??????\u0007?A?V???^???t???????L???????J?i?I?H"
},
{
"id": 7985,
"string": "1\u0000\u0007???L?????`?F?b?N??"
}
]
}
]
},
{
"id": 16998959,
"name": "Tidal Gate",
"events": [
{
"id": 229,
"dialogue": [
{
"id": 8539,
"string": "1\u0000\u0007You can feel a strong magical power emanating from the center of the gate. It seems powerful enough to transport you to a distant place."
},
{
"id": 8540,
"string": "1\u0000\u0007Give in to the magical power?\u0007\u000bIt's worth a shot.\u0007You must be joking!"
}
]
}
]
},
{
"id": 16998962,
"name": "Iron Gate",
"events": [
{
"id": 206,
"dialogue": [
{
"id": 7475,
"string": "1\u0000\u0007Use the \u0001\u00053?????\u0007\u000bYes.\u0007No."
},
{
"id": 7481,
"string": "1\u0000\u0007All of a sudden, the tiny Merrow begins to sing...\u0007??I have longed to sing for you...the fleeting nature of life...??\u0007The other side of the door grows silent, and then you hear a voice...\u0007??Enter, foolish ones who fear us not..."
}
]
},
{
"id": 207,
"dialogue": [
{
"id": 7318,
"string": "1\u0000\u0007Leave through the gate?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16998963,
"name": "Tidal Gate",
"events": [
{
"id": 224,
"dialogue": [
]
},
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 16998982,
"name": "Tidal Gate",
"events": [
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 16998984,
"name": "door_1i1",
"events": [
{
"id": 8,
"dialogue": [
]
},
{
"id": 15,
"dialogue": [
]
},
{
"id": 35,
"dialogue": [
]
},
{
"id": 221,
"dialogue": [
]
}
]
},
{
"id": 16998985,
"name": "ship",
"events": [
{
"id": 8,
"dialogue": [
]
},
{
"id": 15,
"dialogue": [
]
},
{
"id": 221,
"dialogue": [
]
}
]
},
{
"id": 16998986,
"name": "Heavy Iron Gate",
"events": [
{
"id": 106,
"dialogue": [
{
"id": 7317,
"string": "1\u0000\u0007Enter the gate?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 107,
"dialogue": [
{
"id": 7318,
"string": "1\u0000\u0007Leave through the gate?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 16998987,
"name": "Runic Seal",
"events": [
{
"id": 108,
"dialogue": [
]
},
{
"id": 219,
"dialogue": [
{
"id": 8433,
"string": "1\u0000\u0007The suggested level for \u0001\b???????? is \n\u0003.\u0007Place a level restriction on the party?"
},
{
"id": 8434,
"string": "1\u0000\u0007Place a level restriction?\u0007\u000bNo.\u0007Level 70.\u0007Level 60.\u0007Level 50."
},
{
"id": 8452,
"string": "n.\u0000\u0007You are not in possession of \u0001\u00056????.\u0007Unable to enter are"
},
{
"id": 8435,
"string": "1\u0000\u0007Your party's level will be \f\b[unrestricted\/restricted to 70\/restricted to 60\/restricted to 50] for ??\u0001\b????????.?? "
},
{
"id": 8437,
"string": "1\u0000\u0007Accept this setting?\u0007\u000bYes.\u0007No."
},
{
"id": 8438,
"string": "1\u0000\u0007Only nearby party members with the same objective will accompany you to \f\u0004[Leujaoam Sanctum\/the Mamool Ja Training Grounds\/Lebros Cavern\/Periqia\/Ilrusi Atoll\/Nyzul Isle\/The Ashu Talif\/Zhayolm Remnants\/Arrapago Remnants\/Bhaflau Remnants\/Silver Sea Remnants]."
},
{
"id": 8439,
"string": "1\u0000\u0007Please confirm that all party members are cleared to enter \f\u0004[Leujaoam Sanctum\/the Mamool Ja Training Grounds\/Lebros Cavern\/Periqia\/Ilrusi Atoll\/Nyzul Isle\/The Ashu Talif\/Zhayolm Remnants\/Arrapago Remnants\/Bhaflau Remnants\/Silver Sea Remnants]."
},
{
"id": 8440,
"string": "1\u0000\u0007All party members with the appropriate clearance will now be transported to \f\u0004[Leujaoam Sanctum\/the Mamool Ja Training Grounds\/Lebros Cavern\/Periqia\/Ilrusi Atoll\/Nyzul Isle\/The Ashu Talif\/Zhayolm Remnants\/Arrapago Remnants\/Bhaflau Remnants\/Silver Sea Remnants]. Are you ready?"
},
{
"id": 8441,
"string": "1\u0000\u0007Are you ready?\u0007\u000bYes.\u0007No."
},
{
"id": 8448,
"string": "r.\u0000\u0007Connecting to server.\u0007Please wai"
},
{
"id": 8442,
"string": "1\u0000\u0007Commencing transport to \f\u0004[Leujaoam Sanctum\/the Mamool Ja Training Grounds\/Lebros Cavern\/Periqia\/Ilrusi Atoll\/Nyzul Isle\/The Ashu Talif\/Zhayolm Remnants\/Arrapago Remnants\/Bhaflau Remnants\/Silver Sea Remnants"
},
{
"id": 8443,
"string": "]!\u0000\u0007Entry into \f\u0004[Leujaoam Sanctum\/the Mamool Ja Training Grounds\/Lebros Cavern\/Periqia\/Ilrusi Atoll\/Nyzul Isle\/The Ashu Talif\/Zhayolm Remnants\/Arrapago Remnants\/Bhaflau Remnants\/Silver Sea Remnants] has been suspende"
},
{
"id": 8443,
"string": "]!\u0000\u0007Entry into \f\u0004[Leujaoam Sanctum\/the Mamool Ja Training Grounds\/Lebros Cavern\/Periqia\/Ilrusi Atoll\/Nyzul Isle\/The Ashu Talif\/Zhayolm Remnants\/Arrapago Remnants\/Bhaflau Remnants\/Silver Sea Remnants] has been suspende"
}
]
}
]
},
{
"id": 16998988,
"name": "Runic Portal",
"events": [
{
"id": 109,
"dialogue": [
{
"id": 7319,
"string": "1\u0000\u0007Use the device?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 111,
"dialogue": [
{
"id": 7321,
"string": "1\u0000\u0007Attuning yourself to this runic portal will open a path to the Chamber of Passage."
},
{
"id": 7319,
"string": "1\u0000\u0007Use the device?\u0007\u000bYes.\u0007No."
},
{
"id": 7326,
"string": "e.\u0000\u0007\b has attuned ?[himself\/herself] to the runic portal, and opened a path from the Ilrusi Atoll staging point to the Chamber of Passag"
}
]
}
]
},
{
"id": 16998990,
"name": "Ramblix",
"events": [
{
"id": 0,
"dialogue": [
{
"id": 8006,
"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": 8007,
"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": 8008,
"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": 8016,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 8017,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007Get the Picture.\u0007Immortal Sentries.\u0007Luck of the Draw.\u0007The Die Is Cast(pt.1).\u0007The Die Is Cast(pt.2).\u0007No Strings Attached.\u0007Equipped for All Occasions(pt.1).\u0007Equipped for All Occasions(pt.2).\u0007Beginnings.\u0007The Black Coffin(pt.1).\u0007The Black Coffin(pt.2).\u0007The Black Coffin(pt.3).\u0007Ghosts of the Past.\u0007Navigating the Unfriendly Seas(pt.1).\u0007Navigating the Unfriendly Seas(pt.2).\u0007Against All Odds(pt.1).\u0007Against All Odds(pt.2).\u0007Against All Odds(pt.3).\u0007Breaking the Bonds of Fate(pt.1).\u0007Breaking the Bonds of Fate(pt.2).\u0007Prevalence of Pirates.\u0007Shades of Vengeance.\u0007Legacy of the Lost(pt.1).\u0007Legacy of the Lost(pt.2)."
},
{
"id": 8010,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 8018,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later."
},
{
"id": 8010,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 8019,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later."
},
{
"id": 8010,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 8020,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later."
},
{
"id": 8010,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 8010,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 8009,
"string": "1\u0000\u0007Now, listen close..."
}
]
}
]
},
{
"id": 16998992,
"name": "Wasuhd",
"events": [
{
"id": 211,
"dialogue": [
{
"id": 8021,
"string": "1\u0000\u0007Brother! You're alright!"
},
{
"id": 8025,
"string": "1\u0000\u0007Wooow!\u0007This is the first time I've seen a real corsair! You look even cooler than I imagined!"
},
{
"id": 8027,
"string": "1\u0000\u0007No way! I'm gonna become a corsair!"
},
{
"id": 8031,
"string": "1\u0000\u0007...Who's the scary old lady?"
},
{
"id": 8034,
"string": "1\u0000\u0007N-nice to meet you. I want to become a c-corsair, too."
},
{
"id": 8036,
"string": "1\u0000\u0007Hey Zweeha, the guy on the wall... That was ??Quick-Fire Qultada,?? right?"
},
{
"id": 8037,
"string": "1\u0000\u0007I know about him!\u0007He's the captain of the Seagull Phratrie!"
},
{
"id": 8038,
"string": "1\u0000\u0007Wow, that last flash bomb was sooo scary! I'm still seeing spots!"
},
{
"id": 8051,
"string": "1\u0000\u0007Yes, ma'am!"
},
{
"id": 8053,
"string": "1\u0000\u0007Whaaat? Why!?"
},
{
"id": 8058,
"string": "1\u0000\u0007But ?[he\/she] isn't a bad ?[man\/woman]! ?[He\/She] searched all over Whitegate just to find me!\u0007Oh, come on... You just gotta let me join the Seagull Phratrie!"
},
{
"id": 8060,
"string": "1\u0000\u0007Come on, ?[mister\/lady]... Can't you convince her to let us stay?"
},
{
"id": 8061,
"string": "1\u0000\u0007You came here to become a corsair too, didn't you?"
},
{
"id": 8063,
"string": "1\u0000\u0007Liar!"
},
{
"id": 8070,
"string": "1\u0000\u0007Of course!"
}
]
}
]
},
{
"id": 16998993,
"name": "Mutihb",
"events": [
{
"id": 211,
"dialogue": [
{
"id": 8022,
"string": "1\u0000\u0007Wasuhd... What are you doing here?"
},
{
"id": 8023,
"string": "1\u0000\u0007You're a mercenary? Or an adventurer? Why did you help my brother?"
},
{
"id": 8024,
"string": "1\u0000\u0007...I apologize. The important thing is that you did help out. Thank you."
},
{
"id": 8026,
"string": "1\u0000\u0007You need to go home.\u0007Dad must be worried sick about you."
},
{
"id": 8028,
"string": "1\u0000\u0007What?"
},
{
"id": 8030,
"string": "1\u0000\u0007He's my little brother."
},
{
"id": 8032,
"string": "1\u0000\u0007Show some respect!\u0007This is Zweeha, the Seagull Phratrie's second in command!"
},
{
"id": 8041,
"string": "1\u0000\u0007What's that?"
},
{
"id": 8045,
"string": "1\u0000\u0007...Do you mean to say that someone is giving them inside information?"
},
{
"id": 8069,
"string": "1\u0000\u0007Wasuhd...\u0007Are you serious about becoming a corsair?"
},
{
"id": 8071,
"string": "1\u0000\u0007Father's going to get angry with me all over again..."
},
{
"id": 8072,
"string": "1\u0000\u0007But so be it.\u0007Anyway, you must first pass Zweeha's test."
},
{
"id": 8073,
"string": "1\u0000\u0007The corsairs are a free assembly. Race and status mean nothing here. The only thing that matters is strength of will."
},
{
"id": 8074,
"string": "1\u0000\u0007As long as you can prove your courage and resolution, they're sure to accept you as one of us."
},
{
"id": 8075,
"string": "1\u0000\u0007The land where the corsairs perished... I think she may be referring to Talacca Cove."
},
{
"id": 8076,
"string": "1\u0000\u0007This is your test. I can't help you out..."
},
{
"id": 8077,
"string": "1\u0000\u0007But I can wish you the best of luck, Wasuhd."
}
]
},
{
"id": 228,
"dialogue": [
{
"id": 8088,
"string": "1\u0000\u0007\b, the scent of the sea is nothing new to you now... I think it's time for you to take the pledge."
}
]
},
{
"id": 231,
"dialogue": [
]
},
{
"id": 233,
"dialogue": [
{
"id": 8159,
"string": "1\u0000\u0007Lady Zweeha, I await your command."
},
{
"id": 8161,
"string": "1\u0000\u0007The captain's leadership ability and navigational skills are top-notch, but everyone has a weakness."
},
{
"id": 8163,
"string": "1\u0000\u0007...Imutira?"
},
{
"id": 8244,
"string": "1\u0000\u0007Should we negotiate with the Immortals?"
}
]
},
{
"id": 238,
"dialogue": [
]
}
]
},
{
"id": 16998994,
"name": "Zweeha",
"events": [
{
"id": 211,
"dialogue": [
{
"id": 8029,
"string": "1\u0000\u0007What's a kid doing here, Mutihb?"
},
{
"id": 8039,
"string": "1\u0000\u0007Good work, everyone.\u0007It was a complete success, thanks to your efforts."
},
{
"id": 8040,
"string": "1\u0000\u0007There's just one thing that bothers me..."
},
{
"id": 8042,
"string": "1\u0000\u0007I was talking to Qultada and he pointed out..."
},
{
"id": 8043,
"string": "1\u0000\u0007...that the Immortals showed up altogether too quickly."
},
{
"id": 8044,
"string": "1\u0000\u0007I do not want to believe it, but it does seem to suggest..."
},
{
"id": 8047,
"string": "1\u0000\u0007Are you certain, Gowam?"
},
{
"id": 8050,
"string": "1\u0000\u0007Good work, Gowam. I will inform Qultada.\u0007Seagulls, prepare for battle!"
},
{
"id": 8052,
"string": "1\u0000\u0007You go home."
},
{
"id": 8054,
"string": "1\u0000\u0007Do you expect us to drag a kid out to battle?"
},
{
"id": 8055,
"string": "1\u0000\u0007And you.\u0007You're an adventurer, right? Naja's got you under her thumb, doesn't she?"
},
{
"id": 8056,
"string": "1\u0000\u0007And this ?[man\/woman]. The Immortals are blue mages, and you have the nerve to bring one here! Simply revolting."
},
{
"id": 8057,
"string": "1\u0000\u0007And you.\u0007You're a mercenary, right? You're a lapdog of the Empire!"
},
{
"id": 8059,
"string": "1\u0000\u0007Enough of this nonsense!\u0007Get out of here before Qultada sees you!"
},
{
"id": 8064,
"string": "1\u0000\u0007We do come across people like you occasionally."
},
{
"id": 8065,
"string": "1\u0000\u0007But words will not get you into the Seagull Phratrie."
},
{
"id": 8066,
"string": "1\u0000\u0007We favor action."
},
{
"id": 8067,
"string": "1\u0000\u0007If you are serious, you must venture to the land where our ancestors, the corsairs, perished in times past, and bring us an item that proves your courage and resolution."
},
{
"id": 8068,
"string": "1\u0000\u0007Then we can talk."
}
]
},
{
"id": 228,
"dialogue": [
{
"id": 8079,
"string": "s!\u0000\u0007Who goes there?\u0007I hope you are aware of what happens to trespassers."
},
{
"id": 8080,
"string": "1\u0000\u0007\b?\u0007It has been long since we last met."
},
{
"id": 8081,
"string": "1\u0000\u0007I was beginning to think you headed back to the Middle Lands because Aht Urhgan was too rough for you."
},
{
"id": 8083,
"string": "1\u0000\u0007Aznahf, I hear the sharks are craving red-haired Elvaan as of late..."
},
{
"id": 8085,
"string": "1\u0000\u0007Frivolous chatter is forbidden in the Seagull Phratrie. You would do well to remember that too, \b."
},
{
"id": 8086,
"string": "1\u0000\u0007Then again...\u0007You have become quite the corsair, haven't you?"
},
{
"id": 8087,
"string": "1\u0000\u0007Perhaps Qultada was right about you after all..."
},
{
"id": 8098,
"string": "1\u0000\u0007Not so fast.\u0007Just look at \b. ?[He\/She] is unpresentable for such a ceremony."
},
{
"id": 8107,
"string": "1\u0000\u0007I see...\u0007?[He\/She] may be able to acquire one in the Middle Lands."
},
{
"id": 8110,
"string": "1\u0000\u0007What is it now?"
},
{
"id": 8120,
"string": "1\u0000\u0007Hmph, just like a kid running off in search of excitement. I hope it all goes well, but ?[he\/she] will need luck on ?[his\/her] side."
},
{
"id": 8122,
"string": "1\u0000\u0007Heheheh.\u0007Now that you mention it, ?[he\/she] does awfully resemble you when you were younger..."
}
]
},
{
"id": 232,
"dialogue": [
{
"id": 8136,
"string": "1\u0000\u0007You have good timing.\u0007I was just looking for you, \b."
},
{
"id": 8137,
"string": "1\u0000\u0007Have you ever heard of \u0001\u0001\u0001 \u0001\u0005$?????"
},
{
"id": 8138,
"string": "1\u0000\u0007I see...\u0007Not that I expected you to, of course. The knowledge of its existence is limited even among the most experienced sailors."
},
{
"id": 8139,
"string": "1\u0000\u0007You look curious, so let me explain..."
},
{
"id": 8140,
"string": "1\u0000\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$???? is used to create a highly detailed representation of the Near Eastern seas. It is somewhat like a seafloor mapping instrument."
},
{
"id": 8141,
"string": "1\u0000\u0007The maze of reefs and the peculiar magnetic field around the Arrapago Islands have caused many a shipwreck. Mere compasses are of little use."
},
{
"id": 8142,
"string": "1\u0000\u0007We have these natural obstructions to thank for keeping our base safe from intrusion."
},
{
"id": 8143,
"string": "1\u0000\u0007However, without \u0001\u0001\u0001 \u0001\u0005$????, leaving this reef is nearly impossible."
},
{
"id": 8144,
"string": "1\u0000\u0007Now, you may be wondering why I am telling you this..."
},
{
"id": 8145,
"string": "1\u0000\u0007We are currently attempting to restore the Seagull Phratrie's ship..."
},
{
"id": 8146,
"string": "1\u0000\u0007The ??Black Cradle.??"
},
{
"id": 8147,
"string": "1\u0000\u0007She used to be a sight to behold. However, a while ago we ran into some trouble, and the ship ended up with a giant hole in her hull."
},
{
"id": 8148,
"string": "1\u0000\u0007At that time, we also lost the most important part of all...the \u0001\u0005#????."
},
{
"id": 8149,
"string": "1\u0000\u0007Even if we were to finish reparations, leaving the reef would be virtually impossible. We could end up at the bottom of the ocean along with the ship if we are not careful..."
},
{
"id": 8151,
"string": "1\u0000\u0007?\u0001\u0001\u0005%???? are very old and highly valuable. You will not be able to find one in any shop or at the auction house."
},
{
"id": 8152,
"string": "1\u0000\u0007The ships of the ancient Kingdom of Ephramad all had one... Unfortunately, they are all lying on the bottom of the ocean now."
},
{
"id": 8153,
"string": "1\u0000\u0007Still... If you do happen to find one by some wild stroke of luck, please give it to our lookout in Nashmau."
},
{
"id": 8155,
"string": "1\u0000\u0007All right?\u0007I know you can do this, \b."
}
]
},
{
"id": 233,
"dialogue": [
{
"id": 8156,
"string": "1\u0000\u0007What is the meaning of this!?"
},
{
"id": 8157,
"string": "1\u0000\u0007You mean to tell me that Qultada went scampering off after some woman right after the \u0001\u0005#???? was stolen?"
},
{
"id": 8158,
"string": "1\u0000\u0007..."
},
{
"id": 8160,
"string": "1\u0000\u0007Hmph... I have no command for this."
},
{
"id": 8162,
"string": "1\u0000\u0007This is absurd. Who could that fool of a captain have gone off with?"
},
{
"id": 8164,
"string": "1\u0000\u0007Imutira?"
},
{
"id": 8165,
"string": "1\u0000\u0007Don't be ridiculous. That girl was..."
},
{
"id": 8167,
"string": "1\u0000\u0007What is it now?"
},
{
"id": 8169,
"string": "1\u0000\u0007What is the meaning of this!?"
},
{
"id": 8171,
"string": "1\u0000\u0007Could Imutira be behind this...?"
},
{
"id": 8172,
"string": "1\u0000\u0007You are still new to the Phratrie, correct? So Imutira was before your time..."
},
{
"id": 8173,
"string": "1\u0000\u0007Imutira and her brother Jahqib..."
},
{
"id": 8174,
"string": "1\u0000\u0007They were both members of the Seagull Phratrie."
},
{
"id": 8175,
"string": "1\u0000\u0007Until they were swallowed by the ocean, that is..."
},
{
"id": 8188,
"string": "1\u0000\u0007I have not told you yet how the Black Cradle was destroyed..."
},
{
"id": 8189,
"string": "1\u0000\u0007At present, the Seagull Phratrie's base is located on land...but long ago, we roamed the seas, waging war on the Empire's merchant vessels."
},
{
"id": 8190,
"string": "1\u0000\u0007Just like the corsairs of old..."
},
{
"id": 8191,
"string": "1\u0000\u0007However, one day we were cursed with ill fate, and came upon the Imperial Navy. Their warships relentlessly pursued us."
},
{
"id": 8192,
"string": "1\u0000\u0007Finally, we were able to lose them after dark..."
},
{
"id": 8193,
"string": "1\u0000\u0007That's when we noticed that our lookout, Jahqib, had disappeared from his place atop the mast."
},
{
"id": 8194,
"string": "1\u0000\u0007Everyone loved Jahqib...so we searched the ship for him desperately, but to no avail... He was gone."
},
{
"id": 8195,
"string": "1\u0000\u0007It may be harsh, but during a naval battle, falling from a ship means death. There was nothing we could do."
},
{
"id": 8196,
"string": "1\u0000\u0007Our ship had taken serious damage, and we were forced to retreat to the reefs. But fortune did not smile upon us that day... We would never be able to return in search of Jahqib."
},
{
"id": 8197,
"string": "1\u0000\u0007We gave Imutira's brother a burial at sea with an empty casket... It was then that she started saying she wanted to join the Seagull Phratrie in order to avenge her brother's death."
},
{
"id": 8198,
"string": "1\u0000\u0007In truth, however, her rage was not directed at the Empire, but at us...the Phratrie."
},
{
"id": 8200,
"string": "1\u0000\u0007Nobody ever discussed the matter..."
},
{
"id": 8201,
"string": "1\u0000\u0007The Phratrie members were beside themselves with sorrow and regret for the inability to protect their companion..."
},
{
"id": 8202,
"string": "1\u0000\u0007We couldn't bring ourselves to make an excuse for such a tragedy..."
},
{
"id": 8204,
"string": "1\u0000\u0007And then...after returning from a mission to scout the Empire, she made an attempt on Qultada's life."
},
{
"id": 8205,
"string": "1\u0000\u0007Of course, she was no match for Qultada, and her effort was a complete failure. Still..."
},
{
"id": 8208,
"string": "1\u0000\u0007However, Imutira was new, and the sister of a trusted member... Qultada had pity on her and gave her an option."
},
{
"id": 8209,
"string": "1\u0000\u0007She could lose her life by the captain's sword, or get off the boat immediately."
},
{
"id": 8210,
"string": "1\u0000\u0007Qultada knew how close the Imperial capital was, and that she could swim the distance with any luck."
},
{
"id": 8212,
"string": "1\u0000\u0007Fate truly is cruel... Imutira ended up joining her brother at his resting place in the raging seas. Or so we thought..."
},
{
"id": 8224,
"string": "1\u0000\u0007Imutira...\u0007I was sure she had left this mortal coil..."
},
{
"id": 8225,
"string": "1\u0000\u0007Could it be...the luck of the corsair?"
},
{
"id": 8226,
"string": "1\u0000\u0007Qultada still regrets not being able to save Jahqib..."
},
{
"id": 8227,