-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbeadeaux.json
1540 lines (1497 loc) · 54.6 KB
/
beadeaux.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": 147,
"name": "Beadeaux",
"actors": [
{
"id": 17379793,
"name": "",
"events": [
{
"id": 151,
"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": 17379795,
"name": "Naji",
"events": [
{
"id": 120,
"dialogue": [
{
"id": 7343,
"string": "1\u0000\u0007All right! Come and get me, Coppers!"
}
]
}
]
},
{
"id": 17379796,
"name": "Ayame",
"events": [
{
"id": 120,
"dialogue": [
{
"id": 7339,
"string": "1\u0000\u0007Is everyone here, then?\u0007We are in Beadeaux, near the Quadav stronghold."
},
{
"id": 7340,
"string": "1\u0000\u0007Our mission targets are the Copper Quadav, and only the Copper Quadav. We must eliminate twenty of them each, then retreat and regroup at the rendezvous point."
},
{
"id": 7341,
"string": "1\u0000\u0007We will disperse and attack from different sides to prevent the enemy from setting up an effective defense."
},
{
"id": 7342,
"string": "1\u0000\u0007As soon as you've achieved your mission goals, disengage and regroup in the Pashhow Marshlands, in the area just beyond this exit."
},
{
"id": 7344,
"string": "1\u0000\u0007Do not follow his example, please...\u0007Let us begin. Good hunting!"
}
]
}
]
},
{
"id": 17379797,
"name": "Hani",
"events": [
{
"id": 120,
"dialogue": [
]
}
]
},
{
"id": 17379798,
"name": "Dalzakk",
"events": [
{
"id": 120,
"dialogue": [
]
}
]
},
{
"id": 17379799,
"name": "Zeid",
"events": [
{
"id": 121,
"dialogue": [
{
"id": 7345,
"string": "1\u0000\u0007I see you have learned to bear the weight of that blade--it is the weight of the lives you have taken with it."
},
{
"id": 7346,
"string": "1\u0000\u0007It is up to you to choose whether or not you will walk down the bloody path of the dark knight. But it might be wise to confront your past, first, before you make your decision..."
},
{
"id": 7347,
"string": "1\u0000\u0007Your training to become a dark knight is already complete..."
},
{
"id": 7348,
"string": "1\u0000\u0007As long as your blade craves for the souls of your enemies, our paths may cross again.\u0007Until then, farewell."
}
]
},
{
"id": 122,
"dialogue": [
{
"id": 7371,
"string": "1\u0000\u0007I can see this place still lingers in your heart. Here is where it all began--where you set out on your journey as a Dark Knight."
},
{
"id": 7372,
"string": "1\u0000\u0007You've become stronger. However, you must never forget the souls of those that you have brought down with your mighty blade."
},
{
"id": 7373,
"string": "1\u0000\u0007You have made many sacrifices to come this far. That is the road you have chosen, but also your sin."
},
{
"id": 7374,
"string": "1\u0000\u0007However, at the same time, one life cannot continue on without the loss of another. Denying this truth would mean the end of all life in Vana'diel. This vicious circle must continue on."
},
{
"id": 7375,
"string": "1\u0000\u0007Does the sword you wield shine as dark as the purest ebony? Do you thirst for new challenges that lie ahead? If so, seek out and destroy Gerwitz's Scythe."
},
{
"id": 7376,
"string": "1\u0000\u0007The scythe will be making its way toward the place where crystals gather. It will replenish its power there and then set out to seek fresh blood."
},
{
"id": 7377,
"string": "1\u0000\u0007To prove your strength to Gerwitz's beast, seek out the blood of a beast worthy enough and take it to the place where crystals gather. There you can call him."
},
{
"id": 7378,
"string": "1\u0000\u0007His beast is cautious and will not show itself to me. But to you...to you it may just..."
}
]
}
]
},
{
"id": 17379801,
"name": "The Afflictor",
"events": [
]
},
{
"id": 17379802,
"name": "The Afflictor",
"events": [
]
},
{
"id": 17379803,
"name": "The Afflictor",
"events": [
]
},
{
"id": 17379804,
"name": "The Afflictor",
"events": [
]
},
{
"id": 17379805,
"name": "The Afflictor",
"events": [
]
},
{
"id": 17379806,
"name": "The Afflictor",
"events": [
]
},
{
"id": 17379807,
"name": "The Mute",
"events": [
]
},
{
"id": 17379808,
"name": "The Mute",
"events": [
]
},
{
"id": 17379809,
"name": "The Mute",
"events": [
]
},
{
"id": 17379810,
"name": "The Mute",
"events": [
]
},
{
"id": 17379818,
"name": "Sliding Door",
"events": [
{
"id": 124,
"dialogue": [
]
}
]
},
{
"id": 17379839,
"name": "Serafin",
"events": [
{
"id": 1000,
"dialogue": [
]
}
]
},
{
"id": 17379840,
"name": "Evrard",
"events": [
{
"id": 1000,
"dialogue": [
]
}
]
},
{
"id": 17379841,
"name": "Jail Door",
"events": [
{
"id": 1000,
"dialogue": [
]
}
]
},
{
"id": 17379842,
"name": "Treasure Chest",
"events": [
]
},
{
"id": 17379844,
"name": "???",
"events": [
{
"id": 113,
"dialogue": [
{
"id": 7367,
"string": "1\u0000\u0007A piece of parchment has been nailed here."
},
{
"id": 7368,
"string": "1\u0000\u0007Do you want to read it?\u0007\u000bYes.\u0007Not now."
},
{
"id": 7369,
"string": "1\u0000\u0007Mrahcva dauqe htsi yekllec eht."
},
{
"id": 7370,
"string": "1\u0000\u0007Vada uqons naem dnuos on."
}
]
}
]
},
{
"id": 17379845,
"name": "Haggleblix",
"events": [
{
"id": 130,
"dialogue": [
{
"id": 7385,
"string": "1\u0000\u0007Whaddaya want? You wanna talk to me? Well, I don't wanna talk to you until you got something I wanna hear. Take a hike, buddy."
}
]
},
{
"id": 131,
"dialogue": [
{
"id": 7387,
"string": "1\u0000\u0007?\u0001\u0001\u00053?????\u0007Didn't think I'd ever hear those words from someone who wasn't a Gob. You know some weird stuff, for a person."
},
{
"id": 7388,
"string": "1\u0000\u0007There's a story that says some things have their own soul."
},
{
"id": 7389,
"string": "1\u0000\u0007The \u0001\u00055???? used to be just simple hourglasses. But as they passed through the hands of dozens of people, and even a few beastmen as well, the hourglasses were transformed by all their thoughts and feelings."
},
{
"id": 7390,
"string": "1\u0000\u0007They have the ability to focus mysterious powers. In our travels through all the lands of this world, us Goblins often come across this sorta thing."
},
{
"id": 7391,
"string": "1\u0000\u0007Now we come to the fun part. If you want a \u0001\u00053????, I'd be willing to sell one to you. And you should know that only us Gobs can tell if an item has its own soul."
},
{
"id": 7392,
"string": "1\u0000\u0007You people--heck, even other beastmen--have no idea. I've seen you guys throw away these items like they were junk."
},
{
"id": 7393,
"string": "1\u0000\u0007They may look like garbage, but souled items are rare and valuable.\u0007You still want an hourglass, you gotta cough up \n\u0003 gil."
},
{
"id": 7395,
"string": "1\u0000\u0007You want one, you hand me over the money.\u0007Like, with a quickness. So how's about it?"
},
{
"id": 7396,
"string": "1\u0000\u0007What's that you got there? ?\u0001\u0001\u0001\u0001 \u0001\u0005$?????\u0007You're quite the collector for one o' your kind."
},
{
"id": 7397,
"string": "1\u0000\u0007It might just be a worthless piece o' junk for you, but it's priceless to us Gobs.\u0007If you want, I can take it off your hands for \n\u0001."
},
{
"id": 7398,
"string": "1\u0000\u0007I add to my collection, you get some pocket change. A win-win situation, right?\u0007So just trade that \u0001\u0005#???? on over, why don't ya?"
}
]
},
{
"id": 132,
"dialogue": [
{
"id": 7410,
"string": "1\u0000\u0007I got a proposition for you. \u0007Before the Great War, a different currency was used in each of the three nations."
},
{
"id": 7411,
"string": "1\u0000\u0007But when gil became the coin of choice, all the other types of money were done away with. \u0007Now the old forms of currency are worthless to anyone besides a collector like me."
},
{
"id": 7412,
"string": "1\u0000\u0007You've never seen them before? \u0007Here, take a look at this."
},
{
"id": 7413,
"string": "1\u0000\u0007This is the least valuable type. It was part of the currency of \f\u0007[Bastok\/Windurst].\u0007Since you were able to find out about the \u0001\u0005#????, I'm guessing you'll be able to get your hands on a few of these."
},
{
"id": 7414,
"string": "1\u0000\u0007The three nations all had their different types of money, but I'm only interested in the old currency of \f\u0007[Bastok\/Windurst].\u0007Collect enough of them and I'll trade you some other stuff I've got."
},
{
"id": 7415,
"string": "1\u0000\u0007One's not gonna be enough, though.\u0007You bring me \n\u0001 \u0001\t)???????? and I'll trade you a single \u0001\u0005#????. \u0007You don't look real interested, but hold up. I'm just getting started."
},
{
"id": 7416,
"string": "1\u0000\u0007If you've got \n\u0001 \u0001\t)????????, I'll give you a \u0001\u0005#????. Either that or I'll trade you for one of the goodies in my treasure hoard. They all go for a different price, however."
},
{
"id": 7539,
"string": "1\u0000\u0007I'll exchange you \n\u0002 \u0001\t)???????? for a \u0001\u0005#????. They're worth a bunch, so don't go giving 'em away."
}
]
},
{
"id": 133,
"dialogue": [
{
"id": 7426,
"string": "1\u0000\u0007Hmm? Was there something you wanted to ask me?"
},
{
"id": 7428,
"string": "1\u0000\u0007What do you want to ask about?\u0007\u000bNothing.\u0007Hourglasses.\u0007Maps.\u0007Old currencies.\u0007Trading \u0001\u0005%????."
},
{
"id": 7429,
"string": "1\u0000\u0007Old currencies?\u0007I was telling you about how the three nations all used to have different types of money. You remember, right?"
}
]
},
{
"id": 134,
"dialogue": [
{
"id": 7431,
"string": "1\u0000\u0007I didn't think there were people who loved this sorta stuff as much as I do. You really understand what things are worth. \u0007I don't give discounts, but you're welcome back anytime."
}
]
},
{
"id": 135,
"dialogue": [
{
"id": 7379,
"string": "1\u0000\u0007Lemme see here. Looks like you've brought me \n\u0001 \u0001\t)????????. A deal's a deal, so here's the \u0001\u0005#????."
}
]
},
{
"id": 136,
"dialogue": [
{
"id": 7381,
"string": "1\u0000\u0007Whatcha got there? Looks like \n\u0001 \u0001\t)????????. Guess that means I gotta give you this \u0001\u0005#????."
}
]
},
{
"id": 137,
"dialogue": [
{
"id": 7383,
"string": "1\u0000\u0007Well, you make an old Gob smile, you do. Not many people hand over \n\u0001 \u0001\t)????????. Take this \u0001\u0005#???? and get outta here."
},
{
"id": 7437,
"string": "1\u0000\u0007Here's the list of stuff you can trade your \u0001\u0005%???? for."
},
{
"id": 7448,
"string": "1\u0000\u0007Which item will you look at?\u0007\u000bView next page.\u0007?\u0001\u0001\u0005#????: \n\u0000 ?\u0000[bill\/bills].\u0007?\u0001\u0001\u0005#????: \n\u0002 ?\u0002[bill\/bills].\u0007?\u0001\u0001\u0005#????: \n\u0004 ?\u0004[bill\/bills].\u0007?\u0001\u0001\u0005#????: \n\u0006 ?\u0006[bill\/bills].\u0007Nothing."
},
{
"id": 7449,
"string": "1\u0000\u0007Which item will you look at?\u0007\u000bView previous page.\u0007?\u0001\u0001\u0005#????: \n\u0000 ?\u0000[bill\/bills].\u0007?\u0001\u0001\u0005#????: \n\u0002 ?\u0002[bill\/bills].\u0007?\u0001\u0001\u0005#????: \n\u0004 ?\u0004[bill\/bills].\u0007Nothing."
},
{
"id": 7439,
"string": "1\u0000\u0007This is \u0001\u0001\u0001 \u0001\u0005$????.\u0007You want one, you're gonna have to bring me \n\u0002 \u0001\t)????????."
},
{
"id": 7441,
"string": "1\u0000\u0007What do you want to ask about?\u0007\u000bNothing.\u0007Hourglasses."
},
{
"id": 7693,
"string": "d.\u0000\u0007Maps, ya say?\u0007Hah! Just like one o' your kind to need those dingy scraps o' parchment."
},
{
"id": 7695,
"string": "1\u0000\u0007Buy a map? (Current gil: \n\u000b).\u0007\u000bNot now.\u0007Dynamis - San d'Oria (\n\u0001).\u0007Dynamis - Bastok (\n\u0002).\u0007Dynamis - Windurst (\n\u0003).\u0007Dynamis - Jeuno (\n\u0004).\u0007Dynamis - Beaucedine (\n\u0005).\u0007Dynamis - Xarcabard (\n\u0006).\u0007Dynamis - Valkurm (\n\u0007).\u0007Dynamis - Buburimu (\n\b).\u0007Dynamis - Qufim (\n\t).\u0007Dynamis - Tavnazia (\n\n)."
},
{
"id": 7696,
"string": "1\u0000\u0007Buy \u0001\u00056?????\u0007\u000bDeal!\u0007No deal."
},
{
"id": 7388,
"string": "1\u0000\u0007There's a story that says some things have their own soul."
},
{
"id": 7389,
"string": "1\u0000\u0007The \u0001\u00055???? used to be just simple hourglasses. But as they passed through the hands of dozens of people, and even a few beastmen as well, the hourglasses were transformed by all their thoughts and feelings."
},
{
"id": 7390,
"string": "1\u0000\u0007They have the ability to focus mysterious powers. In our travels through all the lands of this world, us Goblins often come across this sorta thing."
},
{
"id": 7391,
"string": "1\u0000\u0007Now we come to the fun part. If you want a \u0001\u00053????, I'd be willing to sell one to you. And you should know that only us Gobs can tell if an item has its own soul."
},
{
"id": 7392,
"string": "1\u0000\u0007You people--heck, even other beastmen--have no idea. I've seen you guys throw away these items like they were junk."
},
{
"id": 7393,
"string": "1\u0000\u0007They may look like garbage, but souled items are rare and valuable.\u0007You still want an hourglass, you gotta cough up \n\u0003 gil."
},
{
"id": 7395,
"string": "1\u0000\u0007You want one, you hand me over the money.\u0007Like, with a quickness. So how's about it?"
},
{
"id": 7396,
"string": "1\u0000\u0007What's that you got there? ?\u0001\u0001\u0001\u0001 \u0001\u0005$?????\u0007You're quite the collector for one o' your kind."
},
{
"id": 7397,
"string": "1\u0000\u0007It might just be a worthless piece o' junk for you, but it's priceless to us Gobs.\u0007If you want, I can take it off your hands for \n\u0001."
},
{
"id": 7398,
"string": "1\u0000\u0007I add to my collection, you get some pocket change. A win-win situation, right?\u0007So just trade that \u0001\u0005#???? on over, why don't ya?"
},
{
"id": 7411,
"string": "1\u0000\u0007But when gil became the coin of choice, all the other types of money were done away with. \u0007Now the old forms of currency are worthless to anyone besides a collector like me."
},
{
"id": 7412,
"string": "1\u0000\u0007You've never seen them before? \u0007Here, take a look at this."
},
{
"id": 7413,
"string": "1\u0000\u0007This is the least valuable type. It was part of the currency of \f\u0007[Bastok\/Windurst].\u0007Since you were able to find out about the \u0001\u0005#????, I'm guessing you'll be able to get your hands on a few of these."
},
{
"id": 7414,
"string": "1\u0000\u0007The three nations all had their different types of money, but I'm only interested in the old currency of \f\u0007[Bastok\/Windurst].\u0007Collect enough of them and I'll trade you some other stuff I've got."
},
{
"id": 7415,
"string": "1\u0000\u0007One's not gonna be enough, though.\u0007You bring me \n\u0001 \u0001\t)???????? and I'll trade you a single \u0001\u0005#????. \u0007You don't look real interested, but hold up. I'm just getting started."
},
{
"id": 7416,
"string": "1\u0000\u0007If you've got \n\u0001 \u0001\t)????????, I'll give you a \u0001\u0005#????. Either that or I'll trade you for one of the goodies in my treasure hoard. They all go for a different price, however."
},
{
"id": 7539,
"string": "1\u0000\u0007I'll exchange you \n\u0002 \u0001\t)???????? for a \u0001\u0005#????. They're worth a bunch, so don't go giving 'em away."
}
]
},
{
"id": 138,
"dialogue": [
{
"id": 7541,
"string": "1\u0000\u0007Alrighty, \n\u0002 \u0001\t)???????? in exchange for your \u0001\u0005#????."
}
]
},
{
"id": 152,
"dialogue": [
{
"id": 7431,
"string": "1\u0000\u0007I didn't think there were people who loved this sorta stuff as much as I do. You really understand what things are worth. \u0007I don't give discounts, but you're welcome back anytime."
}
]
},
{
"id": 153,
"dialogue": [
{
"id": 7435,
"string": "1\u0000\u0007Yeah, this is the real thing all right.\u0007You got some okay junk-collectin' skills for a person."
}
]
}
]
},
{
"id": 17379846,
"name": "Ramblix",
"events": [
{
"id": 123,
"dialogue": [
{
"id": 7699,
"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": 7700,
"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": 7701,
"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": 7709,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 7710,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007The Four Musketeers.\u0007Blade of Darkness.\u0007Blade of Evil.\u0007The Rescue.\u0007For the Birds."
},
{
"id": 7703,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7711,
"string": "1\u0000\u0007"
},
{
"id": 7703,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7712,
"string": "1\u0000\u0007"
},
{
"id": 7703,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7713,
"string": "1\u0000\u0007"
},
{
"id": 7703,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7703,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7702,
"string": "1\u0000\u0007Now, listen close..."
}
]
}
]
},
{
"id": 17379848,
"name": "GoalPoint",
"events": [
{
"id": 139,
"dialogue": [
]
},
{
"id": 140,
"dialogue": [
]
}
]
},
{
"id": 17379849,
"name": "GoalPoint",
"events": [
{
"id": 141,
"dialogue": [
]
},
{
"id": 142,
"dialogue": [
]
}
]
},
{
"id": 17379850,
"name": "GoalPoint",
"events": [
{
"id": 143,
"dialogue": [
]
},
{
"id": 144,
"dialogue": [
]
}
]
},
{
"id": 17379851,
"name": "GoalPoint",
"events": [
{
"id": 145,
"dialogue": [
]
},
{
"id": 146,
"dialogue": [
]
}
]
},
{
"id": 17379852,
"name": "GoalPoint",
"events": [
{
"id": 147,
"dialogue": [
]
},
{
"id": 148,
"dialogue": [
]
}
]
},
{
"id": 17379853,
"name": "GoalPoint",
"events": [
{
"id": 149,
"dialogue": [
]
},
{
"id": 150,
"dialogue": [
]
}
]
},
{
"id": 17379854,
"name": "Moogle",
"events": [
{
"id": 139,
"dialogue": [
{
"id": 7744,
"string": "1\u0000\u0007Boo-hah-hah?`...kupo!"
},
{
"id": 7745,
"string": "1\u0000\u0007Huh? Why aren't you jumping out of your skin in absolute terror?\u0007I would've died of fright, kupo!"
},
{
"id": 7746,
"string": "1\u0000\u0007Here, take this as a testament to your courage.\u0007Exchange it for the item your partner received so you can prove that you both reached the goal safely, kupo!"
},
{
"id": 7747,
"string": "1\u0000\u0007Return with the evidence of your success to the moogle in town. Handing over your partner's item will prove that you were both able to reach me, kupo!"
},
{
"id": 7748,
"string": "1\u0000\u0007Oh, and here's a picture of how your partner's face looked when I popped out of nowhere to scare you. You should hand this in at the same time, kupo!\u0007Kupupupu..."
}
]
},
{
"id": 140,
"dialogue": [
{
"id": 7749,
"string": "1\u0000\u0007This place is crawling with nasties.\u0007You should probably head back to town so you can testify to your partner's bravery."
},
{
"id": 7744,
"string": "1\u0000\u0007Boo-hah-hah?`...kupo!"
},
{
"id": 7750,
"string": "1\u0000\u0007Why do ghosts say ??boo,?? anyway?"
},
{
"id": 7751,
"string": "1\u0000\u0007I heard that going to a dark, scary dungeon is the best way to test your courage.\u0007This place definitely qualifies, kupo!"
},
{
"id": 7752,
"string": "1\u0000\u0007Maybe I'm doing something wrong, kupo?"
},
{
"id": 7753,
"string": "1\u0000\u0007If it gets out that I haven't scared the wits out of a single person yet, I'm going to get into trouble, kupo..."
}
]
}
]
},
{
"id": 17379855,
"name": "Moogle",
"events": [
{
"id": 141,
"dialogue": [
{
"id": 7744,
"string": "1\u0000\u0007Boo-hah-hah?`...kupo!"
},
{
"id": 7745,
"string": "1\u0000\u0007Huh? Why aren't you jumping out of your skin in absolute terror?\u0007I would've died of fright, kupo!"
},
{
"id": 7746,
"string": "1\u0000\u0007Here, take this as a testament to your courage.\u0007Exchange it for the item your partner received so you can prove that you both reached the goal safely, kupo!"
},
{
"id": 7747,
"string": "1\u0000\u0007Return with the evidence of your success to the moogle in town. Handing over your partner's item will prove that you were both able to reach me, kupo!"
},
{
"id": 7748,
"string": "1\u0000\u0007Oh, and here's a picture of how your partner's face looked when I popped out of nowhere to scare you. You should hand this in at the same time, kupo!\u0007Kupupupu..."
}
]
},
{
"id": 142,
"dialogue": [
{
"id": 7749,
"string": "1\u0000\u0007This place is crawling with nasties.\u0007You should probably head back to town so you can testify to your partner's bravery."
},
{
"id": 7744,
"string": "1\u0000\u0007Boo-hah-hah?`...kupo!"
},
{
"id": 7750,
"string": "1\u0000\u0007Why do ghosts say ??boo,?? anyway?"
},
{
"id": 7751,
"string": "1\u0000\u0007I heard that going to a dark, scary dungeon is the best way to test your courage.\u0007This place definitely qualifies, kupo!"
},
{
"id": 7752,
"string": "1\u0000\u0007Maybe I'm doing something wrong, kupo?"
},
{
"id": 7753,
"string": "1\u0000\u0007If it gets out that I haven't scared the wits out of a single person yet, I'm going to get into trouble, kupo..."
}
]
}
]
},
{
"id": 17379856,
"name": "Moogle",
"events": [
{
"id": 143,
"dialogue": [
{
"id": 7744,
"string": "1\u0000\u0007Boo-hah-hah?`...kupo!"
},
{
"id": 7745,
"string": "1\u0000\u0007Huh? Why aren't you jumping out of your skin in absolute terror?\u0007I would've died of fright, kupo!"
},
{
"id": 7746,
"string": "1\u0000\u0007Here, take this as a testament to your courage.\u0007Exchange it for the item your partner received so you can prove that you both reached the goal safely, kupo!"
},
{
"id": 7747,
"string": "1\u0000\u0007Return with the evidence of your success to the moogle in town. Handing over your partner's item will prove that you were both able to reach me, kupo!"
},
{
"id": 7748,
"string": "1\u0000\u0007Oh, and here's a picture of how your partner's face looked when I popped out of nowhere to scare you. You should hand this in at the same time, kupo!\u0007Kupupupu..."
}
]
},
{
"id": 144,
"dialogue": [
{
"id": 7749,
"string": "1\u0000\u0007This place is crawling with nasties.\u0007You should probably head back to town so you can testify to your partner's bravery."
},
{
"id": 7744,
"string": "1\u0000\u0007Boo-hah-hah?`...kupo!"
},
{
"id": 7750,
"string": "1\u0000\u0007Why do ghosts say ??boo,?? anyway?"
},
{
"id": 7751,
"string": "1\u0000\u0007I heard that going to a dark, scary dungeon is the best way to test your courage.\u0007This place definitely qualifies, kupo!"
},
{
"id": 7752,
"string": "1\u0000\u0007Maybe I'm doing something wrong, kupo?"
},
{
"id": 7753,
"string": "1\u0000\u0007If it gets out that I haven't scared the wits out of a single person yet, I'm going to get into trouble, kupo..."
}
]
}
]
},
{
"id": 17379857,
"name": "Moogle",