-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdavoi.json
2121 lines (2069 loc) · 73.7 KB
/
davoi.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": 149,
"name": "Davoi",
"actors": [
{
"id": 17387979,
"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": 17387983,
"name": "Wall of Dark Arts",
"events": [
{
"id": 54,
"dialogue": [
{
"id": 7347,
"string": "1\u0000\u0007Enter the cave?\u0007\u000bYes.\u0007No."
},
{
"id": 7348,
"string": "1\u0000\u0007Leave the cave?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 55,
"dialogue": [
{
"id": 7344,
"string": "1\u0000\u0007The Orc barrier seals it shut."
},
{
"id": 7348,
"string": "1\u0000\u0007Leave the cave?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 56,
"dialogue": [
]
},
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17387985,
"name": "Wall of Banishing",
"events": [
{
"id": 42,
"dialogue": [
{
"id": 7354,
"string": "1\u0000\u0007Place the \u0001\u00053?????\u0007\u000bPlace it.\u0007Not now."
}
]
}
]
},
{
"id": 17387987,
"name": "Sedal-Godjal",
"events": [
{
"id": 20,
"dialogue": [
]
},
{
"id": 21,
"dialogue": [
{
"id": 7387,
"string": "1\u0000\u0007Oh yeah, I almostaru forgot. Monsters flock to those red pools like flies to Quadav droppings. You watch yourself out there!"
}
]
},
{
"id": 22,
"dialogue": [
{
"id": 7379,
"string": "1\u0000\u0007Huh? You really wantaru into that cave? Hah! Not after I went through all that trouble sealing off the Orc lord..."
},
{
"id": 7380,
"string": "1\u0000\u0007Especially not now, with reinforcements on the way! Bestaru to stay outta that cave, I say!"
},
{
"id": 7381,
"string": "1\u0000\u0007But...you made it this far. Guess I'll give you a chance!"
},
{
"id": 7382,
"string": "1\u0000\u0007Take your chances?\u0007\u000bYes.\u0007No."
},
{
"id": 7389,
"string": "1\u0000\u0007Humph. Sissy!"
}
]
},
{
"id": 23,
"dialogue": [
{
"id": 7383,
"string": "1\u0000\u0007Alrighty, then. Pass my test, and I'll let you into that meanie-weanie old cave."
},
{
"id": 7384,
"string": "1\u0000\u0007I'm going to give you \u0001\u00056????, which you are to dip in the four red pools of Davoi. You'll know the orb is absorbing magic when its color changes!"
},
{
"id": 7385,
"string": "1\u0000\u0007Once you're done, bring it back here and I'll grade you!"
},
{
"id": 7386,
"string": "1\u0000\u0007Heeeey, don't worry! Long as nothing...unexpected happens, you'll do just fine! I guarantee it! Bonne chance!"
}
]
},
{
"id": 24,
"dialogue": [
{
"id": 7378,
"string": "1\u0000\u0007Have you been to the cave to the south? Best to stay away if you know the danger! Not that it's all that easy to find the way in there..."
}
]
},
{
"id": 25,
"dialogue": [
{
"id": 7390,
"string": "1\u0000\u0007Heeeey, so you made it back in one piece? Good, good! Oh, I forgot to tell you one thing: if an orb turns totally red, it gets cursed."
},
{
"id": 7391,
"string": "1\u0000\u0007W-w-wait a second! Isn't that \u0001\u00056???? you have there!?"
},
{
"id": 7392,
"string": "1\u0000\u0007Well, I guess all's well that ends well! This is aboutaru all the power you'll need, methinks."
},
{
"id": 7393,
"string": "1\u0000\u0007Let me just give it the barrier-disruption spells it so very much deserves..."
},
{
"id": 7364,
"string": "1\u0000\u0007The mage's magic transforms the cursed orb into \u0001\u00056????."
},
{
"id": 7394,
"string": "1\u0000\u0007And there you go! Take that \u0001\u00053???? and stick it into the barrier. That should disruptaru the thing long enough for you to go in."
},
{
"id": 7395,
"string": "1\u0000\u0007Take care and don't let the Orcs get it! There now, off you go! Good luck!"
}
]
},
{
"id": 26,
"dialogue": [
]
},
{
"id": 27,
"dialogue": [
{
"id": 7396,
"string": "1\u0000\u0007Ahhh... You know, I'm sure I'm forgetting something..."
},
{
"id": 7397,
"string": "1\u0000\u0007What was that now? Hmm..."
}
]
},
{
"id": 118,
"dialogue": [
{
"id": 7509,
"string": "1\u0000\u0007Ah, one more thing...4\u0001\u0007...Yah!"
},
{
"id": 7510,
"string": "1\u0000\u0007The \u0001\u00053???? has been drained of magic."
}
]
},
{
"id": 119,
"dialogue": [
{
"id": 7511,
"string": "..\u0000\u0007I've been using my power to seal the brutish-wutish Orcish Overlord in the caves just beyond here. I mustaru continue my efforts until the reinforcements arrive."
},
{
"id": 7512,
"string": "1\u0000\u0007However, my concentration for maintaining the seal is being disruptarued. An Orc carrying \u0001\u0001\u0001 \u0001\u0005$???? has been enspelling me from afar..."
}
]
},
{
"id": 120,
"dialogue": [
{
"id": 7517,
"string": "1\u0000\u0007...Hm?\u0007Why did I run away from the Aurastery? That's something I prefer not to talk about..."
}
]
},
{
"id": 121,
"dialogue": [
{
"id": 7526,
"string": "1\u0000\u0007When the reinforcements arrive from San d'Oria, I'll return to Windurst. The professor mustaru have forgotten about Mojiji by now."
},
{
"id": 7527,
"string": "1\u0000\u0007Huh? He's still getting letters. But, I'm not writing them anymore!"
}
]
},
{
"id": 122,
"dialogue": [
{
"id": 7528,
"string": "1\u0000\u0007...Ah, justaru the person I wanted to see.\u0007There's something I wanted to ask you..."
},
{
"id": 7529,
"string": "1\u0000\u0007How did you use that malevolent magic doll to track me down?"
},
{
"id": 7530,
"string": "1\u0000\u0007The \u0001\u00053????!?\u0007So this ring is what broughtaru about my discovery.\u0007Well, I can't just throw it away..."
},
{
"id": 7531,
"string": "1\u0000\u0007Hmmm, what to do?\u0007Here, I'll give it to you for safekeeping. Please hold on to it until I return to the Aurastery."
}
]
},
{
"id": 123,
"dialogue": [
{
"id": 7532,
"string": "1\u0000\u0007I will return as soon as the reinforcements arrive from San d'Oria."
},
{
"id": 7533,
"string": "1\u0000\u0007Ah, dear old Windurst, how long has it been? I wonder if I still remember the way to the Aurastery?"
}
]
}
]
},
{
"id": 17387989,
"name": "Bernal",
"events": [
{
"id": 30,
"dialogue": [
]
},
{
"id": 31,
"dialogue": [
{
"id": 7365,
"string": "1\u0000\u0007I am Bernal, of the Royal Knights of San d'Oria."
},
{
"id": 7366,
"string": "1\u0000\u0007The mage in this tower has trapped the Orc lord inside a cave to the south. Now we just wait for reinforcements."
},
{
"id": 7367,
"string": "1\u0000\u0007Actually, my friend Quemaricond left for the homeland quite some time ago. I do hope the message made it through."
}
]
},
{
"id": 33,
"dialogue": [
{
"id": 7369,
"string": "1\u0000\u0007Have you business at the tower?"
},
{
"id": 7376,
"string": "1\u0000\u0007Enter the tower?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 34,
"dialogue": [
{
"id": 7370,
"string": "1\u0000\u0007You've finished what you came here to do?"
},
{
"id": 7377,
"string": "1\u0000\u0007Leave the tower?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 43,
"dialogue": [
{
"id": 7371,
"string": "1\u0000\u0007I cannot leave my post, but I pray for your success. Pick your fights wisely, and be not afraid to run if your enemy outnumbers you."
},
{
"id": 7368,
"string": "1\u0000\u0007Incidentally..."
}
]
}
]
},
{
"id": 17387990,
"name": "Quemaricond",
"events": [
{
"id": 117,
"dialogue": [
]
}
]
},
{
"id": 17387991,
"name": "Groaning Pond",
"events": [
{
"id": 50,
"dialogue": [
]
}
]
},
{
"id": 17387992,
"name": "Howling Pond",
"events": [
{
"id": 51,
"dialogue": [
]
}
]
},
{
"id": 17387993,
"name": "Wailing Pond",
"events": [
{
"id": 52,
"dialogue": [
]
}
]
},
{
"id": 17387994,
"name": "Screaming Pond",
"events": [
{
"id": 53,
"dialogue": [
]
}
]
},
{
"id": 17387995,
"name": "",
"events": [
{
"id": 10,
"dialogue": [
]
}
]
},
{
"id": 17388001,
"name": "Elevator Lever",
"events": [
{
"id": 11,
"dialogue": [
{
"id": 7342,
"string": "4?\u0000\u0007Move the lever?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 12,
"dialogue": [
{
"id": 7343,
"string": "1\u0000\u0007Move the lever?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17388002,
"name": "Elevator Lever",
"events": [
{
"id": 13,
"dialogue": [
{
"id": 7343,
"string": "1\u0000\u0007Move the lever?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 14,
"dialogue": [
{
"id": 7342,
"string": "4?\u0000\u0007Move the lever?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17388005,
"name": "Zantaviat",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 7399,
"string": "1\u0000\u0007A message? Finally! I am Zantaviat of the Temple Knights. I've been monitoring Orc activity here for several weeks. They grow stronger in numbers by the day."
},
{
"id": 7401,
"string": "1\u0000\u0007The Temple Knights have been observing Davoi through a number of methods. We've collected our findings in a document: \u0001\u00056????."
},
{
"id": 7402,
"string": "1\u0000\u0007However...one of our men infiltrated the area last night, and ran into an Orc hunting party on his way out. He dropped the last page of his report before he could escape."
},
{
"id": 7403,
"string": "1\u0000\u0007The Orcs caught wind of our presence, so we could not retrieve the lost page so easily."
},
{
"id": 7404,
"string": "1\u0000\u0007According to our man, the page lies somewhere near the platform on the small pond up ahead. Go retrieve it for us."
},
{
"id": 7405,
"string": "1\u0000\u0007With the Orcs on alert, any direct attack would only incite their full wrath. Take care not to be discovered!"
}
]
},
{
"id": 101,
"dialogue": [
{
"id": 7398,
"string": "1\u0000\u0007I am Zantaviat, a scout for San d'Oria. I was sent to watch the Orc camps in Davoi. Be careful, it's a veritable nest of beastmen in there."
}
]
},
{
"id": 102,
"dialogue": [
{
"id": 7412,
"string": "1\u0000\u0007Ah, it's you, \b. I was waiting for you. Let us dispense with the formalities; we want you to infiltrate Davoi."
},
{
"id": 7413,
"string": "1\u0000\u0007Davoi is the central stronghold of the Orcs. We have delved as deep as we dare, but there is still much we do not know."
},
{
"id": 7414,
"string": "1\u0000\u0007Come to think of it, an adventurer came along the other day. He told me to be strong out here by myself, and then he was off towards Davoi all alone. Got courage, that one."
},
{
"id": 7415,
"string": "1\u0000\u0007But that is neither here nor there, eh?"
},
{
"id": 7416,
"string": "1\u0000\u0007Let me explain your mission. There are three Orc settlements in Davoi: East Block, South Block, and North Block."
},
{
"id": 7417,
"string": "1\u0000\u0007We know that they've left coded memos concerning all three blocks. They should be somewhere in East Block."
},
{
"id": 7418,
"string": "1\u0000\u0007East Block is not far from this entrance. I want you to find three of those coded memos."
},
{
"id": 7419,
"string": "1\u0000\u0007Be aware that this mission will surely require combat. You way wish to gather a party to aid you."
}
]
},
{
"id": 104,
"dialogue": [
{
"id": 7409,
"string": "1\u0000\u0007You found the page! Well done. Now the \u0001\u00053???? is complete. Take this to San d'Oria swiftly. Give it to the lord knight at the gatehouse."
}
]
},
{
"id": 105,
"dialogue": [
{
"id": 7423,
"string": "1\u0000\u0007That's all three blocks covered. I will notify the homeland of your contribution. All you need to do is return to San d'Oria and report in at the gatehouse."
}
]
},
{
"id": 114,
"dialogue": [
]
},
{
"id": 115,
"dialogue": [
{
"id": 7486,
"string": "1\u0000\u0007You found the page! Well done. Now the \u0001\u00053???? is complete. Take this to San d'Oria swiftly and deliver it to Prince Pieuje."
}
]
}
]
},
{
"id": 17388009,
"name": "!",
"events": [
{
"id": 103,
"dialogue": [
{
"id": 7438,
"string": "1\u0000\u0007??\n\u0000-\n\u0001-\n\u0002??\u0007Wait where the water falls."
}
]
}
]
},
{
"id": 17388021,
"name": "Jar",
"events": [
]
},
{
"id": 17388023,
"name": "Hide Flap",
"events": [
{
"id": 110,
"dialogue": [
]
}
]
},
{
"id": 17388024,
"name": "Hide Flap",
"events": [
{
"id": 111,
"dialogue": [
]
}
]
},
{
"id": 17388026,
"name": "Village Well",
"events": [
{
"id": 112,
"dialogue": [
{
"id": 7462,
"string": "1\u0000\u0007Read the letter again?\u0007\u000bYes.\u0007No."
},
{
"id": 7456,
"string": "1\u0000\u0007??Captain Exoroche:\u0007I, Chusarlaud, am no longer worthy to be a Royal Knight, for I have sold our secrets to the Orcs."
},
{
"id": 7457,
"string": "1\u0000\u0007I spent my reward on medicine for my mother, but it was all in vain. Her death taught me the error of my ways, and I tried repeatedly to redeem myself."
},
{
"id": 7458,
"string": "1\u0000\u0007But my partner Vilbert threatened to expose my treachery if I did not continue! Alas, he had me in the palm of his hand!"
},
{
"id": 7459,
"string": "1\u0000\u0007I had to take action! I decided to send this letter upon the close of today's training. I expect no forgiveness, but I must put a stop to this madness."
},
{
"id": 7460,
"string": "1\u0000\u0007I have caused pain to my mother, and I have betrayed my kind captain. There is no other way!??"
},
{
"id": 7461,
"string": "1\u0000\u0007The letter ends abruptly."
}
]
},
{
"id": 113,
"dialogue": [
{
"id": 7454,
"string": "1\u0000\u0007You work the pulley."
},
{
"id": 7455,
"string": "1\u0000\u0007Dipping the letter into the water, you see words appear."
},
{
"id": 7462,
"string": "1\u0000\u0007Read the letter again?\u0007\u000bYes.\u0007No."
}
]
}
]
},
{
"id": 17388027,
"name": "Treasure Chest",
"events": [
]
},
{
"id": 17388028,
"name": "Talking Doll",
"events": [
{
"id": 116,
"dialogue": [
]
},
{
"id": 118,
"dialogue": [
{
"id": 7501,
"string": "1\u0000\u0007Ahahahahaha!\u0007There it is! It's on that Tarutaru!"
}
]
},
{
"id": 124,
"dialogue": [
{
"id": 7538,
"string": "u.\u0000\u0007The \u0001\u00050???? jumps in your hand"
},
{
"id": 7542,
"string": "a!\u0000\u0007Ahahahahaha!\u0007You're almost on top of it!\u0007It's somewhere in this are"
}
]
},
{
"id": 126,
"dialogue": [
]
}
]
},
{
"id": 17388029,
"name": "Rochefogne",
"events": [
{
"id": 116,
"dialogue": [
]
}
]
},
{
"id": 17388030,
"name": "Vauderame",
"events": [
{
"id": 116,
"dialogue": [
{
"id": 7490,
"string": "1\u0000\u0007Well, no matter. The fact is, there is someone else who is looking for the sword. And, either they have got to it first or..."
},
{
"id": 7493,
"string": "1\u0000\u0007...nuisance..."
}
]
}
]
},
{
"id": 17388031,
"name": "???",
"events": [
{
"id": 126,
"dialogue": [
]
}
]
},
{
"id": 17388032,
"name": "Dauperiat",
"events": [
{
"id": 126,
"dialogue": [
{
"id": 7924,
"string": "1\u0000\u0007Impressive...\u0007You don't look like one of Teulomme's lackeys.\u0007Who are you?"
},
{
"id": 7925,
"string": "1\u0000\u0007Impressive...\u0007You don't look like one of Teulomme's lackeys.\u0007Wait...you're that adventurer."
},
{
"id": 7926,
"string": "1\u0000\u0007Hrmph.\u0007So you heard someone was threatening the count, and you were asked to find out who it was?"
},
{
"id": 7927,
"string": "1\u0000\u0007So now that you've found me, it's straight to the Royal Knights, I suppose?"
},
{
"id": 7928,
"string": "1\u0000\u0007No?\u0007What an unusual request you've undertaken."
},
{
"id": 7929,
"string": "1\u0000\u0007No?\u0007You always were one for undertaking unusual requests."
},
{
"id": 7930,
"string": "1\u0000\u0007Very well. Seeing as you've brought me the \u0001\u0005#????, I should consider you a welcome guest.\u0007I'll let you in on a little secret about Count Teulomme."
},
{
"id": 7931,
"string": "1\u0000\u0007I assume you've heard of Atarefaunet's Band?\u0007Did you know their services could be bought for the right price?"
},
{
"id": 7932,
"string": "1\u0000\u0007Even now, most people regard them as little more than a band of particularly vicious thieves."
},
{
"id": 7933,
"string": "1\u0000\u0007A client utilizing their talents for unsavory deeds could thus escape any incrimination."
},
{
"id": 7934,
"string": "1\u0000\u0007But after the war ended, the leader of the band, Atarefaunet, was captured by a pair of bounty hunters."
},
{
"id": 7935,
"string": "1\u0000\u0007Naturally, the band's clients were falling over themselves to have him silenced before all their dirty secrets came to light."
},
{
"id": 7936,
"string": "1\u0000\u0007One of those clients was our very own Count Teulomme.\u0007The man who lords it over the territory of Carpenters' Landing."
},
{
"id": 7937,
"string": "1\u0000\u0007The count realized that Atarefaunet would eventually be executed under San d'Orian law, but the condemned man needed to be taken care of before any inquisitions into his crimes had begun."
},
{
"id": 7938,
"string": "1\u0000\u0007And so, he bought off the oubliette guard and arranged for poison to be mixed with Atarefaunet's meal."
},
{
"id": 7939,
"string": "1\u0000\u0007But this was exactly what Atarefaunet was waiting for.\u0007Feigning death by poison was by far the preferable option to hanging or decapitation!"
},
{
"id": 7940,
"string": "1\u0000\u0007Heh-heh...\u0007Atarefaunet used this opportunity to erase his existence from the world."
},
{
"id": 7941,
"string": "1\u0000\u0007And secrets that would cause apoplexy in half a hundred corrupt nobles went with him."
},
{
"id": 7942,
"string": "1\u0000\u0007How you use this knowledge is up to you.\u0007But I suggest you avoid doing anything to cross Atarefaunet--not if you're fond of your current breathing state."
},
{
"id": 7943,
"string": "1\u0000\u0007After his ??death,?? Atarefaunet slipped off to a nation in the west, yet rumor has it he's surfaced in these lands again."
},
{
"id": 7944,
"string": "1\u0000\u0007I don't know who your employer is, but for a normal townsperson this knowledge would be fatal."
},
{
"id": 7945,
"string": "1\u0000\u0007Take that as advice from the executioner.\u0007Farewell."
}
]
}
]
},
{
"id": 17388033,
"name": "Atarefaunet",
"events": [
{
"id": 126,
"dialogue": [
]
}
]
},
{
"id": 17388034,
"name": "Monban01",
"events": [
{
"id": 126,
"dialogue": [
]
}
]
},
{
"id": 17388035,
"name": "Lootblox",
"events": [
{
"id": 130,
"dialogue": [
{
"id": 7550,
"string": "1\u0000\u0007I got no interest in dealing with the likes of you. Don'tcha got a home to go to?"
}
]
},
{
"id": 131,
"dialogue": [
{
"id": 7563,
"string": "1\u0000\u0007?\u0001\u0001\u00055????, ya say? Ya got my jaw dropping, kid. Where did ya hear about things like that?"
},
{
"id": 7564,
"string": "1\u0000\u0007Did ya know that some items have their own soul? After passing through the hands of hundreds of people, not to mention the paws of us beastmen, some items are transformed through contact with all those thoughts and feelings."
},
{
"id": 7565,
"string": "1\u0000\u0007These transformed items have the ability to focus mysterious powers. Us Goblins often come across this weird phenenom...phemomeno...stuff in our travels."
},
{
"id": 7566,
"string": "1\u0000\u0007Ya know, if ya really want \u0001\u00056????, I could sell one to ya for the right price."
},
{
"id": 7567,
"string": "1\u0000\u0007But let me tell ya, kid. Only us Gobs can tell if an item is souled. Not even other beastmen--and definitely not you people--can tell the difference between normal junk and priceless artifacts."
},
{
"id": 7568,
"string": "1\u0000\u0007Makes me laugh to see you mugs throwing away those items like they was garbage. \u0007A souled item is worth a fortune, and ya ain't gonna get one cheap."