-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcastle_zvahl_baileys.json
1481 lines (1399 loc) · 57.1 KB
/
castle_zvahl_baileys.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": 161,
"name": "Castle Zvahl Baileys",
"actors": [
{
"id": 17436976,
"name": "",
"events": [
{
"id": 104,
"dialogue": [
{
"id": 6514,
"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": 6515,
"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": 6520,
"string": "1\u0000\u0007You open the tome to the ??Moogle's Almanack?? chapter and peruse its weather prognostication pages."
},
{
"id": 6530,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017????."
},
{
"id": 6527,
"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": 6524,
"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": 6521,
"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": 6531,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017????."
},
{
"id": 6528,
"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": 6525,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6522,
"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": 6532,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018????."
},
{
"id": 6529,
"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": 6526,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6523,
"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": 17436997,
"name": "Treasure Chest",
"events": [
]
},
{
"id": 17436999,
"name": "Switchstix",
"events": [
{
"id": 10,
"dialogue": [
{
"id": 7319,
"string": "1\u0000\u0007You got guts to come to this neck of the woods. I can see you ain't no ordinary adventurer, but you ain't the best yet, neither.\u0007Don't get your feathers ruffled, I just tell it like it is."
},
{
"id": 7320,
"string": "1\u0000\u0007Me, I'm a blacksmith, and a damn good one. My Goblin forgecraft can make the most worthless rusty piece of junk shine like new again. Looks like you take good care of your weapons, though."
},
{
"id": 7321,
"string": "1\u0000\u0007You got nothing for me to work on, so this conversation is over. I got better things to do than sit here and waste time trading insults with smart-alecky adventurers. Bye-bye now."
},
{
"id": 7495,
"string": "1\u0000\u0007Did I mention I fix up armor and shields as well?\u0007You wanna impress your friends with an old relic that shines like new, you know who to ask!"
}
]
},
{
"id": 11,
"dialogue": [
{
"id": 7337,
"string": "1\u0000\u0007Oho, you brought me what I asked for? ?\u0001\u0001\u0001\u0001 \u0001\u0005$????, \u0001\u0001\u0001 \u0001\u0005$????, and \u0001\u0001\u0001 \u0001\u0005$????. My pockets are gonna be bulging when I unload this stuff, heh heh."
},
{
"id": 7338,
"string": "1\u0000\u0007Now about that fee. As a craftsgoblin, it's embarrassin' to admit, but I don't think I can reforge the \u0001\u0005#???? for you. There's a blacksmith I know who can do the job, though. Damn expensive, but the best blacksmith I ever saw."
},
{
"id": 7339,
"string": "1\u0000\u0007The fee, including my cut for the referral, comes out to \n\u0005 \u0001\t)????????. It's gonna be a fun time getting your grubby little adventurer hands on the loot, but the result will be worth it."
},
{
"id": 7403,
"string": "1\u0000\u0007So this is \u0001\u0001\u0001 \u0001\u0005$?????\u0007Huh. I been all over the place and seen lotsa bizzaro stuff, but this is the first time I've seen something like this.\u0007You sure you're not a Gob?"
},
{
"id": 7404,
"string": "1\u0000\u0007Righto, I'll take this stuff off your hands and we can get down to my favorite subject: extra fees. This one's really gonna cost you.\u0007Cha-ching! That'll be \n\u0005 \u0001\t)????????, please!"
},
{
"id": 7405,
"string": "1\u0000\u0007Collecting this sum is gonna be tough. Incredibly, unbelievably, ridiculously difficult. But I got faith in you, ?[adventure-boy\/adventure-girl]!"
},
{
"id": 7326,
"string": "1\u0000\u0007You got me what I need? Lemme see here, \u0001\u0001\u0001 \u0001\u0005$????, \u0001\u0001\u0001 \u0001\u0005$????, and \u0001\u0001\u0001 \u0001\u0005$????. Good work.\u0007Did I mention that I don't work for free? I'm gonna need a little something up front--don't trust you sneaky adventurer-types."
},
{
"id": 7498,
"string": "1\u0000\u0007I don't work for that gil you adventurer-types love to hoard.\u0007What I'm gonna need is \n\u0002 \u0001\t)????????. Better throw in \n\u0004 \u0001\t)????????. Oh, and don't forget \n\u0006 \u0001\t)????????."
},
{
"id": 7499,
"string": "1\u0000\u0007That's my fee.\u0007You gotta problem with fair trade? You pay me, I fix up your stuff."
},
{
"id": 7337,
"string": "1\u0000\u0007Oho, you brought me what I asked for? ?\u0001\u0001\u0001\u0001 \u0001\u0005$????, \u0001\u0001\u0001 \u0001\u0005$????, and \u0001\u0001\u0001 \u0001\u0005$????. My pockets are gonna be bulging when I unload this stuff, heh heh."
},
{
"id": 7338,
"string": "1\u0000\u0007Now about that fee. As a craftsgoblin, it's embarrassin' to admit, but I don't think I can reforge the \u0001\u0005#???? for you. There's a blacksmith I know who can do the job, though. Damn expensive, but the best blacksmith I ever saw."
},
{
"id": 7507,
"string": "1\u0000\u0007The fee, including my cut for the referral, comes out to \n\u0002 \u0001\t)????????. Plus \n\u0004 \u0001\t)????????. Oh, and while we're at it, \n\u0006 \u0001\t)????????."
},
{
"id": 7508,
"string": "1\u0000\u0007It's gonna be a fun time getting your grubby little adventurer hands on the loot, but the result will be worth it."
},
{
"id": 7403,
"string": "1\u0000\u0007So this is \u0001\u0001\u0001 \u0001\u0005$?????\u0007Huh. I been all over the place and seen lotsa bizzaro stuff, but this is the first time I've seen something like this.\u0007You sure you're not a Gob?"
},
{
"id": 7518,
"string": "1\u0000\u0007Righto, I'll take this stuff off your hands and we can get down to my favorite subject: extra fees. This one's really gonna cost you."
},
{
"id": 7519,
"string": "1\u0000\u0007I'm gonna hit you up for \n\u0002 \u0001\t)????????, \n\u0004 \u0001\t)????????, and \n\u0006 \u0001\t)????????."
},
{
"id": 7405,
"string": "1\u0000\u0007Collecting this sum is gonna be tough. Incredibly, unbelievably, ridiculously difficult. But I got faith in you, ?[adventure-boy\/adventure-girl]!"
},
{
"id": 7326,
"string": "1\u0000\u0007You got me what I need? Lemme see here, \u0001\u0001\u0001 \u0001\u0005$????, \u0001\u0001\u0001 \u0001\u0005$????, and \u0001\u0001\u0001 \u0001\u0005$????. Good work.\u0007Did I mention that I don't work for free? I'm gonna need a little something up front--don't trust you sneaky adventurer-types."
},
{
"id": 7327,
"string": "1\u0000\u0007Oh, and I got no interest in gil. My fee for this job is \n\u0005 \u0001\t)????????. You people pay each other for stuff all the time, right? Well, this ain't no different. You pay my fee, your weapon gets fixed up."
}
]
},
{
"id": 12,
"dialogue": [
{
"id": 7340,
"string": "1\u0000\u0007I don't have the skill to reforge the \u0001\u0005#???? you gave me, so I'm gonna take it to a blacksmith friend of mine. It'll be expensive, but the work is topnotch."
},
{
"id": 7341,
"string": "1\u0000\u0007The fee, including my cut for the referral, comes out to \n\u0002 \u0001\t)????????. It's gonna be a fun time getting your grubby little adventurer hands on the loot, but the result will be worth it."
},
{
"id": 7406,
"string": "1\u0000\u0007Your fee this time around is \n\u0002 \u0001\t)????????."
},
{
"id": 7405,
"string": "1\u0000\u0007Collecting this sum is gonna be tough. Incredibly, unbelievably, ridiculously difficult. But I got faith in you, ?[adventure-boy\/adventure-girl]!"
},
{
"id": 7500,
"string": "1\u0000\u0007My fee for reforging your \u0001\u0005#???? is \n\u0002 \u0001\t)????????, \n\u0004 \u0001\t)????????, and \n\u0006 \u0001\t)????????."
},
{
"id": 7501,
"string": "1\u0000\u0007You pay me and I start working. See you when you get back with my fee."
},
{
"id": 7340,
"string": "1\u0000\u0007I don't have the skill to reforge the \u0001\u0005#???? you gave me, so I'm gonna take it to a blacksmith friend of mine. It'll be expensive, but the work is topnotch."
},
{
"id": 7509,
"string": "1\u0000\u0007The fee, including my cut for the referral, comes out to \n\u0002 \u0001\t)????????. Plus \n\u0004 \u0001\t)????????. Oh, and \n\u0006 \u0001\t)????????."
},
{
"id": 7508,
"string": "1\u0000\u0007It's gonna be a fun time getting your grubby little adventurer hands on the loot, but the result will be worth it."
},
{
"id": 7520,
"string": "1\u0000\u0007Your fee this time around is \n\u0002 \u0001\t)????????, \n\u0004 \u0001\t)????????, and \n\u0006 \u0001\t)????????."
},
{
"id": 7405,
"string": "1\u0000\u0007Collecting this sum is gonna be tough. Incredibly, unbelievably, ridiculously difficult. But I got faith in you, ?[adventure-boy\/adventure-girl]!"
},
{
"id": 7328,
"string": "1\u0000\u0007Reforging the \u0001\u0005#???? is gonna cost you \n\u0002 \u0001\t)????????. You pay me and I start working. See you when you get back with my fee."
}
]
},
{
"id": 13,
"dialogue": [
{
"id": 7342,
"string": "1\u0000\u0007It's tough even for us Gobs to collect \u0001\u0005%????, and you've brought me \n\u0002 of them. Not bad for a clueless adventurer-type. Leave the \u0001\u0005#???? with me and the job will get done."
},
{
"id": 7407,
"string": "1\u0000\u0007My buddies are gonna hear about this--\n\u0002 \u0001\t)????????! You shoulda been born a Gob!\u0007You can leave the \u0001\u0005#???? with me."
},
{
"id": 7502,
"string": "1\u0000\u0007You got what I asked for? I count \n\u0002 \u0001\t)????????, \n\u0004 \u0001\t)????????, and \n\u0006 \u0001\t)????????. Looks like it's all here."
},
{
"id": 7503,
"string": "1\u0000\u0007Right, time to get to work. My forge is hot and ready to go."
},
{
"id": 7330,
"string": "1\u0000\u0007The Goblin way of smithing is a little different from your fancy-schmancy ??synthesis.?? I'm gonna need some time to get this job done. You kept me waiting for the materials I needed, now it's your turn to cool your heels for a while. Fair's fair, right?"
},
{
"id": 7502,
"string": "1\u0000\u0007You got what I asked for? I count \n\u0002 \u0001\t)????????, \n\u0004 \u0001\t)????????, and \n\u0006 \u0001\t)????????. Looks like it's all here."
},
{
"id": 7510,
"string": "1\u0000\u0007It's tough even for us Gobs to get our hands on this old currency. Not bad for a clueless adventurer-type. Leave the \u0001\u0005#???? with me and the job will get done."
},
{
"id": 7502,
"string": "1\u0000\u0007You got what I asked for? I count \n\u0002 \u0001\t)????????, \n\u0004 \u0001\t)????????, and \n\u0006 \u0001\t)????????. Looks like it's all here."
},
{
"id": 7521,
"string": "1\u0000\u0007My buddies are gonna hear about this. Look at all this loot! You shoulda been born a Gob!\u0007You can leave the \u0001\u0005#???? with me."
},
{
"id": 7329,
"string": "1\u0000\u0007You brought me my \n\u0002 \u0001\t)????????? Right, time to get to work. My forge is hot and ready to go."
},
{
"id": 7330,
"string": "1\u0000\u0007The Goblin way of smithing is a little different from your fancy-schmancy ??synthesis.?? I'm gonna need some time to get this job done. You kept me waiting for the materials I needed, now it's your turn to cool your heels for a while. Fair's fair, right?"
}
]
},
{
"id": 14,
"dialogue": [
{
"id": 7496,
"string": "1\u0000\u0007Wait up, ?[adventurer-boy\/adventurer-girl]!\u0007My Gobbie blacksmith instincts are telling me that your \u0001\u0005#???? is hiding some real potential."
},
{
"id": 7497,
"string": "1\u0000\u0007Hrmmm. Hrmmm.\u0007It'll take a lotta work to put it back in shape, but this is the kinda thing I live for.\u0007Right, get your notebook ready."
},
{
"id": 7322,
"string": "1\u0000\u0007Hold it right there, pal!\u0007Is that \u0001\u0001\u0001 \u0001\u0005$???? you're carrying? The power hidden behind that worn appearance is making my old Gobbie ears twitch. \u0007Trust me, I'm a blacksmith. I don't kid around when it comes to weapons."
},
{
"id": 7323,
"string": "1\u0000\u0007Hrmmm.\u0007It'd take a lotta work, but I could make that power shine through again. \u0007Okay, ?[adventure-boy\/adventure-girl], you got something to write with?"
},
{
"id": 7324,
"string": "1\u0000\u0007To reforge the \u0001\u0005#????, I'm gonna need \u0001\u0001\u0001 \u0001\u0005$????, \u0001\u0001\u0001 \u0001\u0005$????, and \u0001\u0001\u0001 \u0001\u0005$????. Yep, that's the bare minimum."
},
{
"id": 7325,
"string": "1\u0000\u0007Bring along the \u0001\u0005#???? with those three items and I'll get to work for you. \u0007I've told you what I need, the rest is up to you."
}
]
},
{
"id": 15,
"dialogue": [
{
"id": 7331,
"string": "1\u0000\u0007You back already? I told you this was gonna take some time. You adventurer-types have really gotta learn some patience. \u0007Let me get back to work, will ya? Sheesh."
}
]
},
{
"id": 16,
"dialogue": [
{
"id": 7504,
"string": "1\u0000\u0007You can stop your bellyachin' now--I'm done with your \u0001\u0005#????. So what do you think? You ain't gonna see too many pieces of this quality, I can tell you. Be seeing you, ?[adventure-boy\/adventure-girl]."
},
{
"id": 7332,
"string": "1\u0000\u0007You can stop your bellyachin' now--I'm done with your \u0001\u0005#????. So what do you think? You ain't gonna see too many weapons of this quality, I can tell you. Be seeing you, ?[adventure-boy\/adventure-girl]."
}
]
},
{
"id": 17,
"dialogue": [
{
"id": 7505,
"string": "1\u0000\u0007Oh yeah, one more thing: the \u0001\u0005#???? I worked on can still be improved. I can make that power shine even brighter than before. Do I have your full attention, now? \u0007Naturally, it's gonna cost you."
},
{
"id": 7506,
"string": "1\u0000\u0007The armor and shields you people use are really popular among the beastmen these days. I could make myself a small fortune with just a few pieces."
},
{
"id": 7333,
"string": "1\u0000\u0007Oh yeah, one more thing: the \u0001\u0005#???? I worked on can still be improved. I can make that power shine even brighter than before. Do I have your full attention, now? \u0007Naturally, it's gonna cost you."
},
{
"id": 7334,
"string": "1\u0000\u0007The weapons you people use are really popular among the beastmen these days. I could make myself a small fortune with just a few of them."
},
{
"id": 7335,
"string": "1\u0000\u0007The top sellers at the moment are \u0001\u0005%????, \u0001\u0005%????, and \u0001\u0005%????. There are others I could think of, but those three bring in the most cash. Don't forget to bring the \u0001\u0005#???? back with you, too."
},
{
"id": 7336,
"string": "1\u0000\u0007Those three items cover the cost of materials for reforging the \u0001\u0005#????, but I'm still gonna ask you for a separate fee for my sweat and toil. To forge, or not to forge? The answer is in your hands."
}
]
},
{
"id": 18,
"dialogue": [
{
"id": 7343,
"string": "1\u0000\u0007You really are impatient, ain't you!\u0007This is gonna take a hell of a lot longer than last time--that's how amazing the outcome is gonna be. Better find something else to occupy yourself with for a while."
},
{
"id": 7344,
"string": "1\u0000\u0007This is gonna take so long, you'll forget you even asked me to do it in the first place. A really, really, really long time. Really long. But don't worry, I'm a true craftsgoblin, I won't go back on a deal. Just don't forget to come back, huh?"
}
]
},
{
"id": 19,
"dialogue": [
{
"id": 7511,
"string": "1\u0000\u0007And here you go, the finished masterpiece. Really, really, really sorry to keep you waiting so long. Really sorry. But take a look. Feel this radiating power. I bet you're glad you didn't forget to come back, huh?"
},
{
"id": 7345,
"string": "1\u0000\u0007And here you go, the finished masterpiece. Really, really, really sorry to keep you waiting so long. Really sorry. But take a look. Feel this radiating power. I bet you're glad you didn't forget to come back, huh?"
},
{
"id": 7512,
"string": "1\u0000\u0007This reforging stuff just warms my old Gobbie heart. You find any more old armor or shields, be sure to bring them to me. You never know, they might have the same potential for enhancement you see here. See you around, ?[adventure-boy\/adventure-girl]."
},
{
"id": 7346,
"string": "1\u0000\u0007This reforging stuff just warms my old Gobbie heart. You find any more old weapons, be sure to bring them to me. You never know, they might have the same potential for enhancement you see here. See you around, ?[adventure-boy\/adventure-girl]."
}
]
},
{
"id": 20,
"dialogue": [
]
},
{
"id": 21,
"dialogue": [
]
},
{
"id": 22,
"dialogue": [
]
},
{
"id": 23,
"dialogue": [
]
},
{
"id": 24,
"dialogue": [
]
},
{
"id": 25,
"dialogue": [
]
},
{
"id": 26,
"dialogue": [
]
},
{
"id": 27,
"dialogue": [
]
},
{
"id": 28,
"dialogue": [
]
},
{
"id": 29,
"dialogue": [
]
},
{
"id": 30,
"dialogue": [
]
},
{
"id": 31,
"dialogue": [
]
},
{
"id": 32,
"dialogue": [
]
},
{
"id": 33,
"dialogue": [
]
},
{
"id": 34,
"dialogue": [
]
},
{
"id": 35,
"dialogue": [
]
},
{
"id": 36,
"dialogue": [
]
},
{
"id": 37,
"dialogue": [
]
},
{
"id": 38,
"dialogue": [
]
},
{
"id": 39,
"dialogue": [
]
},
{
"id": 40,
"dialogue": [
]
},
{
"id": 41,
"dialogue": [
]
},
{
"id": 42,
"dialogue": [
]
},
{
"id": 43,
"dialogue": [
]
},
{
"id": 44,
"dialogue": [
]
},
{
"id": 45,
"dialogue": [
]
},
{
"id": 46,
"dialogue": [
]
},
{
"id": 47,
"dialogue": [
]
},
{
"id": 48,
"dialogue": [
]
},
{
"id": 49,
"dialogue": [
]
},
{
"id": 50,
"dialogue": [
{
"id": 7394,
"string": "1\u0000\u0007Hey, you're the ?[guy\/gal] with the \u0001\u0005#????, right?\u0007I got some good news for you."
},
{
"id": 7513,
"string": "1\u0000\u0007Got a letter here from my blacksmith buddy, the guy who forged your \u0001\u0005#????. Wanted me to lay a proposition on you."
},
{
"id": 7395,
"string": "1\u0000\u0007Got a letter here from my blacksmith buddy, the guy who forged your \u0001\u0005#????. Wanted me to lay a proposition on you."
},
{
"id": 7396,
"string": "1\u0000\u0007For years now, him and his mates have been digging tunnels right under this place we're standin' on. Even among us Goblins, they're considered a strange crew."
},
{
"id": 7397,
"string": "1\u0000\u0007They're lookin' for a certain object that was buried here thousands of millions of years ago, or something like that. But don't worry your little head over whatever that may be."
},
{
"id": 7514,
"string": "1\u0000\u0007Anywho, after poking around deep under the earth for so long, they've come across a few strange bits of armor used by Gob-knows-who, Gob-knows-when."
},
{
"id": 7515,
"string": "1\u0000\u0007Now, this is the good part. The armor and shields those guys found happen to have the same sorta aura as the \u0001\u0005#???? you're toting around. Pretty intriguing stuff, wouldn't you say?"
},
{
"id": 7516,
"string": "1\u0000\u0007My buddy mentioned in his letter that he'd be willing to trade his own discovery for your \u0001\u0005#????, as long as you throw \u0001\u0001\u0001 \u0001\u0005$???? into the bargain."
},
{
"id": 7398,
"string": "1\u0000\u0007Anywho, after poking around deep under the earth for so long, they've come across a few strange weapons used by Gob-knows-who, Gob-knows-when."
},
{
"id": 7399,
"string": "1\u0000\u0007Now, this is the good part. The weapons those guys found happen to have the same sorta aura as the \u0001\u0005#???? you're toting around. Pretty intriguing stuff, wouldn't you say?"
},
{
"id": 7400,
"string": "1\u0000\u0007My buddy mentioned in his letter that he'd be willing to trade his discovery for your \u0001\u0005#????, as long as you throw \u0001\u0001\u0001 \u0001\u0005$???? into the bargain."
},
{
"id": 7401,
"string": "1\u0000\u0007Wait a sec...\u0001\u0005#?????\u0007Can't say I've ever heard of it myself. No description in the letter about it neither."
},
{
"id": 7517,
"string": "1\u0000\u0007Hrmmm. Guess if you want to swap your \u0001\u0005#???? for what they dug up, you better start looking for \u0001\u0001\u0001 \u0001\u0005$????. Okay, I've done my bit and told you what you gotta do. It's adventure-time again."
},
{
"id": 7402,
"string": "1\u0000\u0007Hrmmm. Guess if you want to swap your \u0001\u0005#???? for what they dug up, you better start looking for \u0001\u0001\u0001 \u0001\u0005$????.\u0007Okay, I've done my bit and told you what you gotta do. It's adventure-time again."
}
]
},
{
"id": 51,
"dialogue": [
{
"id": 7522,
"string": "1\u0000\u0007You ain't learned any patience on your travels, have you? And no, I'm not gonna tell some blabbermouth adventurer where my buddy hangs out.\u0007Look, I didn't cheat you last time, did I? Give a Gob a break and stop bothering me every five seconds!"
},
{
"id": 7523,
"string": "1\u0000\u0007Oh, and you should be happy. There's no reforging to do, so this won't take nearly half as long as last time. Don't get so involved in your little adventures that you forget all about it, though."
},
{
"id": 7408,
"string": "1\u0000\u0007You ain't learned any patience on your travels, have you? And no, I'm not gonna tell some blabbermouth adventurer where my buddy hangs out.\u0007Look, I didn't cheat you last time, did I? Give a Gob a break and stop bothering me every five seconds!"
},
{
"id": 7409,
"string": "1\u0000\u0007Oh, and you should be happy. There's no reforging to do, so this won't take nearly half as long as last time. Don't get so involved in your little adventures that you forget all about it, though."
}
]
},
{
"id": 52,
"dialogue": [
{
"id": 7524,
"string": "1\u0000\u0007Good timing, your package has arrived. Definitely looks a lot like what you had in the first place...\u0007Hmmm. You're probably thinking this isn't worth the loot you had to part with, huh?"
},
{
"id": 7410,
"string": "1\u0000\u0007Good timing, your package has arrived. Definitely looks a lot like what you had in the first place...\u0007Hmmm. You're probably thinking this isn't worth the loot you had to part with, huh?"
},
{
"id": 7493,
"string": "1\u0000\u0007Good timing, your package has arrived. The letter mentioned something about the weapons being really similar, but I can see a few differences myself.\u0007Hmmm. You're probably thinking this isn't worth the loot you had to part with, huh?"
},
{
"id": 7525,
"string": "1\u0000\u0007Cheer up, ?[adventure-boy\/adventure-girl].\u0007And don't forget to keep bringing me those ancient pieces of armor. Who knows? They might be hiding some secret power that only a blacksmith like me can draw out. \u0007Here's what you came for."
},
{
"id": 7411,
"string": "1\u0000\u0007Cheer up, ?[adventure-boy\/adventure-girl].\u0007And don't forget to keep bringing me those ancient weapons. Who knows? They might be hiding some secret power that only a blacksmith like me can draw out. \u0007Here's what you came for."
}
]
},
{
"id": 53,
"dialogue": [
]
},
{
"id": 54,
"dialogue": [
]
},
{
"id": 55,
"dialogue": [
]
},
{
"id": 56,
"dialogue": [
]
},
{
"id": 57,
"dialogue": [
]
},
{
"id": 58,
"dialogue": [
]
},
{
"id": 59,
"dialogue": [
]
},
{
"id": 60,
"dialogue": [
]
},
{
"id": 61,
"dialogue": [
]
},
{
"id": 62,
"dialogue": [
]
},
{
"id": 63,
"dialogue": [
]
},
{
"id": 64,
"dialogue": [
]
},
{
"id": 65,
"dialogue": [
]
},
{
"id": 66,
"dialogue": [
]
},
{
"id": 67,
"dialogue": [
]
},
{
"id": 68,
"dialogue": [
]
},
{
"id": 69,
"dialogue": [
]
},
{
"id": 70,
"dialogue": [
]
},
{
"id": 71,
"dialogue": [
]
},
{
"id": 72,
"dialogue": [
]
},
{
"id": 73,
"dialogue": [
]
},
{
"id": 74,
"dialogue": [
]
},
{
"id": 75,
"dialogue": [
]
},
{
"id": 76,
"dialogue": [
]
},
{
"id": 77,
"dialogue": [
]
},
{
"id": 78,
"dialogue": [
]
},
{
"id": 79,
"dialogue": [
]
},
{
"id": 80,
"dialogue": [
]
},
{
"id": 81,
"dialogue": [
]
},
{
"id": 82,
"dialogue": [
]
},
{
"id": 83,
"dialogue": [
]
},
{
"id": 84,
"dialogue": [
]
},
{
"id": 85,
"dialogue": [
]
},
{
"id": 86,
"dialogue": [
]
},
{
"id": 87,
"dialogue": [
]
}
]
},
{
"id": 17437000,
"name": "???",
"events": [
]
},
{
"id": 17437002,
"name": "Ramblix",
"events": [
{
"id": 4,
"dialogue": [
{
"id": 7554,
"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": 7555,
"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": 7556,
"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": 7564,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 7565,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007A Challenge! You Could Be a Winner."
},
{
"id": 7558,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7566,
"string": "1\u0000\u0007"
},
{
"id": 7558,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7567,
"string": "1\u0000\u0007"
},
{
"id": 7558,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7568,
"string": "1\u0000\u0007"
},
{
"id": 7558,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7558,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7557,
"string": "1\u0000\u0007Now, listen close..."
}
]
}
]
},
{
"id": 17437004,
"name": "",
"events": [
{
"id": 88,
"dialogue": [
{
"id": 7591,
"string": "1\u0000\u0007Come one, come all!\u0007Welcome to our magnificent Mog Festival, sponsored by that most hospitable of hosts: the one, the only Toto Kupeliaure!"
}
]
}
]
},
{
"id": 17437005,
"name": "???",
"events": [
{
"id": 88,
"dialogue": [