-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcastle_zvahl_keep_s.json
2684 lines (2601 loc) · 101 KB
/
castle_zvahl_keep_s.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"id": 155,
"name": "Castle Zvahl Keep [S]",
"actors": [
{
"id": 17412650,
"name": "",
"events": [
{
"id": 460,
"dialogue": [
{
"id": 7554,
"string": "1\u0000\u0007Register for a union?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7555,
"string": "1\u0000\u0007What will you do?\u0007\u000bNothing.\u0007Transfer to another union.\u0007Resign union membership."
},
{
"id": 7556,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7557,
"string": "1\u0000\u0007\f\u0000[Transfer unions\/Resign from your current union]?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7556,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7557,
"string": "1\u0000\u0007\f\u0000[Transfer unions\/Resign from your current union]?\u0007\u000bNo.\u0007Yes."
},
{
"id": 7562,
"string": "1\u0000\u0007I am afraid that all unions are currently at their maximum enrollment, and unable to accept new recruits.\u0007For better or for worse, though, I suspect it shall not be long before we are in need of some new blood.\u0007Such is the nature of war..."
},
{
"id": 7558,
"string": "1\u0000\u0007Register for which union?\u0007\u000bNone.\u0007Adder Union (\n\u0000 ?\u0000[member\/members]).\u0007Bison Union (\n\u0001 ?\u0001[member\/members]).\u0007Coyote Union (\n\u0002 ?\u0002[member\/members]).\u0007Dhole Union (\n\u0003 ?\u0003[member\/members]).\u0007Eland Union (\n\u0004 ?\u0004[member\/members])."
}
]
}
]
},
{
"id": 17412678,
"name": "",
"events": [
{
"id": 101,
"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": 17412681,
"name": "Sidoine, T.K.",
"events": [
{
"id": 450,
"dialogue": [
{
"id": 7054,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 454,
"dialogue": [
]
}
]
},
{
"id": 17412682,
"name": "Lothur, I.M.",
"events": [
{
"id": 451,
"dialogue": [
{
"id": 7054,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 455,
"dialogue": [
]
}
]
},
{
"id": 17412683,
"name": "Doijo-Amajo, C.C.",
"events": [
{
"id": 452,
"dialogue": [
{
"id": 7054,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 456,
"dialogue": [
]
}
]
},
{
"id": 17412688,
"name": "Barton, C.A.",
"events": [
{
"id": 453,
"dialogue": [
{
"id": 7054,
"string": "1\u0000\u0007What are you doing here? This is no place for civilians."
}
]
},
{
"id": 457,
"dialogue": [
{
"id": 7067,
"string": "1\u0000\u0007Greetings. I am \t of the San d'Orian Provincial Knights."
},
{
"id": 7068,
"string": "1\u0000\u0007Greetings. I am \t of the Bastokan Legion."
},
{
"id": 7069,
"string": "1\u0000\u0007Greetings. I am \t of the Federation of Windurst."
},
{
"id": 7070,
"string": "1\u0000\u0007Greetings. I am \t, Campaign Arbiter for the Allied Forces."
},
{
"id": 7071,
"string": "1\u0000\u0007What can I help you with?\u0007\u000bNothing.\u0007Performance assessment.\u0007New Allied Tags.\u0007Temporary items.\u0007Union registration.\u0007Teleportation.\u0007Information on the Allied Campaign."
},
{
"id": 7077,
"string": "1\u0000\u0007You've already undergone an evaluation for this battle, or had you forgotten?\u0007As much as I'd like to, I'm forbidden from providing you with a new set of Allied Taegs until the next battle begins."
},
{
"id": 7117,
"string": "\u0000!\u0000\u0007I am sorry, \b, but your campaign medal has expired. I cannot issue tags to anyone not authorized by the Allied Forces. Return to your nation's capital and speak with a Campaign Evaluation Official."
},
{
"id": 7117,
"string": "\u0000!\u0000\u0007I am sorry, \b, but your campaign medal has expired. I cannot issue tags to anyone not authorized by the Allied Forces. Return to your nation's capital and speak with a Campaign Evaluation Official."
},
{
"id": 7074,
"string": "1\u0000\u0007Understood. I shall now judge your performance and award the proper remuneration."
},
{
"id": 7076,
"string": "1\u0000\u0007Understood. I shall prepare a new set of tags for you now."
},
{
"id": 7106,
"string": "1\u0000\u0007Let me show you the list of items currently available to you."
},
{
"id": 7107,
"string": "1\u0000\u0007Select a category:\u0007\u000bQuit.\u0007\n\u0000-Note Items.\u0007\n\u0001-Note Items.\u0007\n\u0002-Note Items."
},
{
"id": 7108,
"string": "1\u0000\u0007Which item would you like to see?\u0007\u000bQuit.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????"
},
{
"id": 7109,
"string": "1\u0000\u0007You currently possess \n' Allied Note?'[\/s]."
},
{
"id": 7110,
"string": "1\u0000\u0007Proceed with the transaction?\u0007\u000bYes.\u0007No."
},
{
"id": 7124,
"string": "y.\u0000\u0007Register for a union?\u0007\u000bYes.\u0007No."
},
{
"id": 7555,
"string": "1\u0000\u0007What will you do?\u0007\u000bNothing.\u0007Transfer to another union.\u0007Resign union membership."
},
{
"id": 7556,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7125,
"string": "1\u0000\u0007\f\u0000[Transfer\/Resign] from your current union?\u0007\u000bYes.\u0007No."
},
{
"id": 7556,
"string": "1\u0000\u0007Your steadfast efforts have earned you a claim to share in your union's spoils of war.\u0007By \f\u0000[transferring to another union\/resigning from your union], you will relinquish this right.\u0007It is not my place to question your decision, but I suggest you pay the matter due heed."
},
{
"id": 7125,
"string": "1\u0000\u0007\f\u0000[Transfer\/Resign] from your current union?\u0007\u000bYes.\u0007No."
},
{
"id": 7562,
"string": "1\u0000\u0007I am afraid that all unions are currently at their maximum enrollment, and unable to accept new recruits.\u0007For better or for worse, though, I suspect it shall not be long before we are in need of some new blood.\u0007Such is the nature of war..."
},
{
"id": 7558,
"string": "1\u0000\u0007Register for which union?\u0007\u000bNone.\u0007Adder Union (\n\u0000 ?\u0000[member\/members]).\u0007Bison Union (\n\u0001 ?\u0001[member\/members]).\u0007Coyote Union (\n\u0002 ?\u0002[member\/members]).\u0007Dhole Union (\n\u0003 ?\u0003[member\/members]).\u0007Eland Union (\n\u0004 ?\u0004[member\/members])."
},
{
"id": 7092,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7062,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7092,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7062,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7092,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7062,
"string": "d.\u0000\u0007I am sorry. You do not have enough Allied Notes."
},
{
"id": 7092,
"string": "1\u0000\u0007I will require a teleportation fee of \n\u0000 Allied Note?\u0000[\/s]. I see you currently possess \n\u0002."
},
{
"id": 7093,
"string": "1\u0000\u0007Complete transaction and return to capital?\u0007\u000bYes.\u0007No."
},
{
"id": 7072,
"string": "1\u0000\u0007What would you like to know?\u0007\u000bNothing. I'm sorry.\u0007About performance assessment.\u0007About Allied Tags.\u0007About temporary items.\u0007About Unions."
},
{
"id": 7078,
"string": "1\u0000\u0007Anyone wearing Allied Tags while participating in a campaign battle will be judged on their overall performance."
},
{
"id": 7079,
"string": "1\u0000\u0007Soldiers will be evaluated not only on their fighting skills, but also on how much they contribute to the efforts of their allies through means such as healing and enhancing."
},
{
"id": 7080,
"string": "1\u0000\u0007However, beware that if you leave the area before being assessed, you will be deemed a deserter and will forfeit all rewards earned that day."
},
{
"id": 7081,
"string": "1\u0000\u0007Also, while there are no immediate penalties for being knocked out, falling in battle will significantly lower the score given to you."
},
{
"id": 7082,
"string": "1\u0000\u0007When you are ready to receive compensation for your work on the field, return to me and I shall assess your performance and provide you with your payment."
},
{
"id": 7091,
"string": "1\u0000\u0007That is all."
},
{
"id": 7083,
"string": "1\u0000\u0007Allied Tags are a special type of identification given to all participants of Allied Campaign battles."
},
{
"id": 7084,
"string": "1\u0000\u0007There are benefits, as well as drawbacks, to wearing the tags. One of the benefits is that in the case you are knocked out on the battlefield, you will not lose any experience points."
},
{
"id": 7085,
"string": "1\u0000\u0007However, some of the drawbacks include the inability to improve skills and earn experience points for individual kills, as well as the right to loot fallen enemies."
},
{
"id": 7091,
"string": "1\u0000\u0007That is all."
},
{
"id": 7086,
"string": "1\u0000\u0007Temporary items can be purchased in exchange for Allied Notes."
},
{
"id": 7087,
"string": "1\u0000\u0007There are several different varieties of items, but they all have one thing in common--they can only be used on the battlefield they were issued."
},
{
"id": 7088,
"string": "1\u0000\u0007It is highly recommended that you first survey a battle's conditions and then select the supplies that you believe will benefit you most."
},
{
"id": 7089,
"string": "1\u0000\u0007Please remember that all temporary items you carry on your person will be confiscated in the event that you leave the area."
},
{
"id": 7091,
"string": "1\u0000\u0007That is all."
},
{
"id": 7118,
"string": "1\u0000\u0007Oh ho! Keen to join a Union, are we?\u0007Very well. Listen up and I shall tell you all you need to know."
},
{
"id": 7119,
"string": "1\u0000\u0007In order to better coordinate Allied efforts against the beastman menace, we have instituted a system of ad hoc tactical regiments called ??Unions.?? With five units to a battlefield, union registration is open to any proven soldier in possession of Allied Tags."
},
{
"id": 7120,
"string": "1\u0000\u0007In return for their aid in advancing the war effort, union registrants will be eligible to earn a share of the spoils of war."
},
{
"id": 7121,
"string": "1\u0000\u0007Needless to say, the choicest rewards will be reserved for those unions which make the greatest contributions in combat.\u0007Prove your mettle on the field of battle, and you will earn glory for your union, as well as a sizable bounty of your own."
},
{
"id": 7122,
"string": "1\u0000\u0007Be forewarned that your commitment to your union comes first and foremost.\u0007In the aftermath of battle, you will not be permitted to reap rewards from your individual exploits until your union has distributed its plunder."
},
{
"id": 7091,
"string": "1\u0000\u0007That is all."
}
]
}
]
},
{
"id": 17412706,
"name": "Ore Door",
"events": [
{
"id": 9,
"dialogue": [
]
},
{
"id": 12,
"dialogue": [
]
}
]
},
{
"id": 17412730,
"name": "Ore Door",
"events": [
{
"id": 10,
"dialogue": [
]
},
{
"id": 13,
"dialogue": [
]
}
]
},
{
"id": 17412732,
"name": "Ore Door",
"events": [
{
"id": 11,
"dialogue": [
]
},
{
"id": 14,
"dialogue": [
]
},
{
"id": 90,
"dialogue": [
{
"id": 7858,
"string": "1\u0000\u0007?????????n?????????H\u0007\u000b??????\u0007?o?X???C???P?P_????????\u0007?o?X???C???P?P_?N??????????\u0007?o?X???C???P?P_?n?????H?s??\u0007?o?X???C???P?Q_?U?C?h??????\u0007?o?X???C???P?Q_?C???v?|????\u0007?o?X???C???P?Q_???{?X?|????"
},
{
"id": 7859,
"string": "1\u0000\u0007???I?????????????B?C?x???g???u???A\u0007????"
}
]
}
]
},
{
"id": 17412755,
"name": "???",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 7571,
"string": "1\u0000\u0007Which?\u0007\u000bNevermind.\u0007Qiqirn.\u0007Colibri\u0007Puk\u0007Poroggo\u0007Ameretat\u0007Marid\u0007Wivre\u0007Mamool Ja\u0007Gear\u0007Hydra"
}
]
}
]
},
{
"id": 17412765,
"name": "Allied Commissary",
"events": [
]
},
{
"id": 17412766,
"name": "",
"events": [
]
},
{
"id": 17412767,
"name": "",
"events": [
]
},
{
"id": 17412768,
"name": "",
"events": [
]
},
{
"id": 17412769,
"name": "",
"events": [
]
},
{
"id": 17412770,
"name": "",
"events": [
]
},
{
"id": 17412771,
"name": "???",
"events": [
{
"id": 9,
"dialogue": [
]
},
{
"id": 10,
"dialogue": [
]
},
{
"id": 11,
"dialogue": [
]
},
{
"id": 12,
"dialogue": [
]
},
{
"id": 13,
"dialogue": [
]
},
{
"id": 14,
"dialogue": [
]
},
{
"id": 15,
"dialogue": [
]
},
{
"id": 16,
"dialogue": [
]
},
{
"id": 17,
"dialogue": [
]
},
{
"id": 18,
"dialogue": [
]
}
]
},
{
"id": 17412772,
"name": "???",
"events": [
]
},
{
"id": 17412773,
"name": "",
"events": [
]
},
{
"id": 17412774,
"name": "Rikke",
"events": [
{
"id": 9,
"dialogue": [
{
"id": 7628,
"string": "1\u0000\u0007Step right up, ?[mister\/lady]!\u0007No, don't tell me: yer lookin' for a Hume broad."
},
{
"id": 7629,
"string": "1\u0000\u0007'Bout yea tall? Sword on her hip?\u0007Sure, I know where she's lyin' low."
},
{
"id": 7632,
"string": "1\u0000\u0007Whoa now! What's with the cynical stare?\u0007Could it be that...<gasp>...you don't trust me?"
},
{
"id": 7636,
"string": "1\u0000\u0007I'm wounded. Deeply, like.\u0007Why, I couldn't tell a lie if ya paid me! Well, depends on how much..."
},
{
"id": 7634,
"string": "1\u0000\u0007Bah, fine, don't believe me!\u0007No skin off my wings."
}
]
},
{
"id": 12,
"dialogue": [
{
"id": 7670,
"string": "1\u0000\u0007Well, looky who's back. And with \u0001\u0001\u0001 \u0001\u0005$????, t' boot.\u0007Decided to trust ol' Rikke, did ya?"
},
{
"id": 7671,
"string": "1\u0000\u0007Listen up, then. I'll tell ya all I know about yer Klara lady.\u0007.........6\u0001 And that's all I know."
},
{
"id": 7672,
"string": "1\u0000\u0007You wingless ones really ain't too bright, are ya?\u0007Didn't yer mommy ever tell ya not to trust an imp?"
},
{
"id": 7659,
"string": "1\u0000\u0007Well, looky who's back. And with \u0001\u0001\u0001 \u0001\u0005$????, t' boot.\u0007Decided to trust ol' Rikke, did ya?"
},
{
"id": 7660,
"string": "1\u0000\u0007A shrewd decision, my friend. Astute, even."
},
{
"id": 7661,
"string": "1\u0000\u0007That Klara lady is lyin' low up above\u0007In a corner of the southwest chamber, like."
},
{
"id": 7662,
"string": "1\u0000\u0007I'd tell ya more, but the boss, he don't let us lackeys get too close.\u0007Not even the smart ones like yers truly."
},
{
"id": 7663,
"string": "1\u0000\u0007Don't blame him, though.\u0007If word got out that he was usin' a mortal for his plans, things might get all complicated-like."
},
{
"id": 7664,
"string": "1\u0000\u0007...And that's all I'm gonna say on the matter.\u0007No hard feelings, but I like my wings attached to my body, thankyaverymuch."
}
]
},
{
"id": 19,
"dialogue": [
{
"id": 7635,
"string": "1\u0000\u0007Ya'd have better luck gettin' the lowdown from the Shadow Lord himself than trustin' a word that comes out of the mouth of the swindler to th' \f\u0000[southeast\/northwest\/north\/west] of me."
},
{
"id": 7637,
"string": "1\u0000\u0007Look into these eyes.\u0007Do they look like lyin' eyes to you? Wait, don't answer that..."
},
{
"id": 7635,
"string": "1\u0000\u0007Ya'd have better luck gettin' the lowdown from the Shadow Lord himself than trustin' a word that comes out of the mouth of the swindler to th' \f\u0000[southeast\/northwest\/north\/west] of me."
}
]
},
{
"id": 22,
"dialogue": [
{
"id": 7668,
"string": "1\u0000\u0007You again? Didn't I already tell ya that your lady is up above, in the southwest chamber?"
},
{
"id": 7669,
"string": "1\u0000\u0007Now scram, before the boss makes a Rikkebab outta me for talkin' to you!"
},
{
"id": 7672,
"string": "1\u0000\u0007You wingless ones really ain't too bright, are ya?\u0007Didn't yer mommy ever tell ya not to trust an imp?"
}
]
},
{
"id": 25,
"dialogue": [
{
"id": 7673,
"string": "1\u0000\u0007Saw through our little ruse, did ya?\u0007Ya got a better head on yer shoulders than most wingless ones, I'll give ya that."
},
{
"id": 7674,
"string": "1\u0000\u0007Oh, now you come back, do ya? ??Oh, Rikke! How could I ever have doubted you???\u0007Bah! Yer a day late and about a hundred beastcoins short, ?[mister\/lady]."
}
]
},
{
"id": 28,
"dialogue": [
{
"id": 7700,
"string": "1\u0000\u0007Intruder alert! Intruder alert!\u0007Woooooo! Woooooo!"
},
{
"id": 7701,
"string": "1\u0000\u0007...Or that's what I'd say if I weren't on break.\u0007Move along now. Nothin' to see here!"
}
]
}
]
},
{
"id": 17412775,
"name": "Rakke",
"events": [
{
"id": 10,
"dialogue": [
{
"id": 7638,
"string": "1\u0000\u0007Oh, look...another Allied soldier.\u0007How dreadfully exciting."
},
{
"id": 7639,
"string": "1\u0000\u0007Let me guess: you're searching for someone and need my help.\u0007Oh, will the fun ever stop? <Yawn>..."
},
{
"id": 7641,
"string": "1\u0000\u0007Bring me \n\u0001 \u0001\t)????????, then we can talk.\u0007If I feel like it."
},
{
"id": 7646,
"string": "1\u0000\u0007Fine. then go see my friend to the \f\u0000[east\/north] of here.\u0007He's as honest as they come."
},
{
"id": 7646,
"string": "1\u0000\u0007Fine. then go see my friend to the \f\u0000[east\/north] of here.\u0007He's as honest as they come."
}
]
},
{
"id": 13,
"dialogue": [
{
"id": 7683,
"string": "1\u0000\u0007Oh, how splendid. ?\u0001\u0001\u0001\u0001 \u0001\u0005$????."
},
{
"id": 7684,
"string": "1\u0000\u0007You want a pat on the back? A cookie, perhaps?"
},
{
"id": 7685,
"string": "1\u0000\u0007What, you actually thought I'd tell you where the woman is?\u0007Maybe I would, if I knew...or cared. Now scram."
},
{
"id": 7675,
"string": "1\u0000\u0007Oh, how splendid. ?\u0001\u0001\u0001\u0001 \u0001\u0005$????."
},
{
"id": 7676,
"string": "1\u0000\u0007Am I supposed to give you a round of applause or something?"
},
{
"id": 7677,
"string": "1\u0000\u0007Oh, the Hume woman.\u0007Yeah, I saw her up above, in the southwest chamber. Or somewhere around there."
},
{
"id": 7678,
"string": "1\u0000\u0007I'd tell you more if I knew. Or cared."
},
{
"id": 7679,
"string": "1\u0000\u0007Beats me why the boss needs a Hume for his plans.\u0007If he's having fun, more power to him."
},
{
"id": 7680,
"string": "1\u0000\u0007You could go see for yourself and leave me alone.\u0007That'd be just super."
}
]
},
{
"id": 20,
"dialogue": [
{
"id": 7647,
"string": "1\u0000\u0007If you don't trust me, go see my friend to the \f\u0000[east\/north] of here.\u0007He's as honest as they come."
},
{
"id": 7645,
"string": "1\u0000\u0007My buddy to the \f\u0000[southeast\/northwest\/north\/west] talks the talk, but he couldn't tell the truth if his life depended on it."
},
{
"id": 7647,
"string": "1\u0000\u0007If you don't trust me, go see my friend to the \f\u0000[east\/north] of here.\u0007He's as honest as they come."
}
]
},
{
"id": 23,
"dialogue": [
{
"id": 7681,
"string": "1\u0000\u0007That woman you were looking for?\u0007Yeah, I saw her in the southwest chamber up above. Or somewhere around there."
},
{
"id": 7682,
"string": "1\u0000\u0007But didn't I already tell you that?\u0007Gee, my head hurts..."
},
{
"id": 7685,
"string": "1\u0000\u0007What, you actually thought I'd tell you where the woman is?\u0007Maybe I would, if I knew...or cared. Now scram."
}
]
},
{
"id": 26,
"dialogue": [
{
"id": 7686,
"string": "1\u0000\u0007Oh, so one of the others helped you.\u0007That's just great. Wonderful. Bully for you."
},
{
"id": 7687,
"string": "1\u0000\u0007Back to beg for my help, are you?\u0007You must have confused me with someone who cares..."
}
]
},
{
"id": 29,
"dialogue": [
{
"id": 7702,
"string": "1\u0000\u0007..."
},
{
"id": 7703,
"string": "1\u0000\u0007Sleeping on the job? Perish the thought!\u0007I was just, uh, lulling the enemy into a false sense of security. Yeah, that's the ticket..."
}
]
}
]
},
{
"id": 17412776,
"name": "Rokke",
"events": [
{
"id": 11,
"dialogue": [
{
"id": 7648,
"string": "1\u0000\u0007Yeeeeees? You have business with me, you do?"
},
{
"id": 7651,
"string": "1\u0000\u0007Or maybe you make it worth my while?\u0007Bring Rokke \n\u0001 shiny \u0001\t)????????, perhaps?"
},
{
"id": 7654,
"string": "1\u0000\u0007You trust Rokke, yes?\u0007Rokke no lie to no one."
}
]
},
{
"id": 14,
"dialogue": [
{
"id": 7696,
"string": "1\u0000\u0007Oh, it's you. You bring shiny \u0001\u0005#???? for Rokke, yeeeeees?"
},
{
"id": 7697,
"string": "1\u0000\u0007You nice ?[guy\/lady].\u0007Too bad Rokke not actually know anything."
},
{
"id": 7698,
"string": "1\u0000\u0007Rokke just make funny. Ha ha, hee hee, you know?\u0007Hm? You not laughing..."
},
{
"id": 7688,
"string": "1\u0000\u0007Oh, it's you. You bring shiny \u0001\u0005#???? for Rokke, yeeeeees?"
},
{
"id": 7689,
"string": "1\u0000\u0007Okay, promise is promise, yes it is.\u0007...What was promise again?"
},
{
"id": 7690,
"string": "1\u0000\u0007Oh! Hume woman. Yes yes, I know.\u0007She up above, in secret place. Southwest chamber, you know?"
},
{
"id": 7691,
"string": "1\u0000\u0007You need know more? You go yourself.\u0007Boss no let Rokke get too close, no."
},
{
"id": 7692,
"string": "1\u0000\u0007I no know what boss be thinking, using Hume for his plans.\u0007Then again, boss no pay Rokke to know, no?"
},
{
"id": 7693,
"string": "1\u0000\u0007But Rokke know one thing: you go there, you be very, veeery careful, yes?\u0007You be careful...or you be dead."
}
]
},
{
"id": 21,
"dialogue": [
{
"id": 7655,
"string": "1\u0000\u0007My buddy \f\u0000[southeasty\/northwesty\/northy\/westy] of here say he help you?\u0007Oh, don't trust him, no no no."
},
{
"id": 7657,
"string": "1\u0000\u0007You meet my friend Rikke, yes? Northwesty of here?\u0007He smart. He honest too."
},
{
"id": 7655,
"string": "1\u0000\u0007My buddy \f\u0000[southeasty\/northwesty\/northy\/westy] of here say he help you?\u0007Oh, don't trust him, no no no."
}
]
},
{
"id": 24,
"dialogue": [
{
"id": 7694,
"string": "1\u0000\u0007You back again? You forget what Rokke tell you?\u0007Uh oh...Rokke forget too!"
},
{
"id": 7695,
"string": "1\u0000\u0007Ahahaha, Rokke just make funny, yes?\u0007Hume woman up above, in southwest chamber. You remember well now, yeees?"
},
{
"id": 7699,
"string": "1\u0000\u0007You back? You want Rokke tell you another joke?\u0007An imp, an Ahriman, and a ruszor walk into a tavern, yes...?"
}
]
},
{
"id": 27,
"dialogue": [
{
"id": 7654,
"string": "1\u0000\u0007You trust Rokke, yes?\u0007Rokke no lie to no one."
},
{
"id": 7706,
"string": "1\u0000\u0007Oh, so one of the others helped you.\u0007That's just great. Wonderful. Bully for you."
},
{
"id": 7707,
"string": "1\u0000\u0007Look who's back, after blowin' me off the last time.\u0007What did you want again? And why should I care?"
}
]
},
{
"id": 30,
"dialogue": [
{
"id": 7704,
"string": "1\u0000\u0007Eleventy-three intruders, eleventy-four--\u0007No, wait... Eleventy-five?"