-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathghelsba_outpost.json
1247 lines (1193 loc) · 33.5 KB
/
ghelsba_outpost.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": 140,
"name": "Ghelsba Outpost",
"actors": [
{
"id": 17350948,
"name": "",
"events": [
{
"id": 58,
"dialogue": [
{
"id": 6884,
"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": 6885,
"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": 6890,
"string": "1\u0000\u0007You open the tome to the ??Moogle's Almanack?? chapter and peruse its weather prognostication pages."
},
{
"id": 6900,
"string": "1\u0000\u0007Close observation of the sky reveals that the weather in this area today will be \u0001\u0005\u0017????."
},
{
"id": 6897,
"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": 6894,
"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": 6891,
"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": 6901,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017????."
},
{
"id": 6898,
"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": 6895,
"string": "1\u0000\u0007Predicting ahead, tomorrow's weather looks to be \u0001\u0005\u0017???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6892,
"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": 6902,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018????."
},
{
"id": 6899,
"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": 6896,
"string": "1\u0000\u0007Finally, the forecast for the day after tomorrow calls for \u0001\u0005\u0018???? with a chance of \u0001\u0005\u0018????."
},
{
"id": 6893,
"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": 17350950,
"name": "Hut Door",
"events": [
{
"id": 2,
"dialogue": [
{
"id": 7712,
"string": "1\u0000\u0007This looks like an Orcish dwelling. The door is firmly shut."
}
]
},
{
"id": 3,
"dialogue": [
{
"id": 7715,
"string": "4\u0002\u0000\u0007You open the door."
}
]
},
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17350951,
"name": "Ropchop",
"events": [
{
"id": 32003,
"dialogue": [
]
}
]
},
{
"id": 17350955,
"name": "Fodderchief Vokdek",
"events": [
{
"id": 32000,
"dialogue": [
]
},
{
"id": 32001,
"dialogue": [
]
}
]
},
{
"id": 17350956,
"name": "Sureshot Snatgat",
"events": [
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17350957,
"name": "",
"events": [
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17350958,
"name": "Albere",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
]
}
]
},
{
"id": 17350959,
"name": "Beautefier",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
]
}
]
},
{
"id": 17350960,
"name": "Vaseradoul",
"events": [
{
"id": 0,
"dialogue": [
]
},
{
"id": 3,
"dialogue": [
{
"id": 7729,
"string": "1\u0000\u0007Th-thank you!"
},
{
"id": 7730,
"string": "1\u0000\u0007But, I wonder what that Orc meant..."
},
{
"id": 7731,
"string": "1\u0000\u0007Could it be true...that a new leader has united the hordes?"
},
{
"id": 7732,
"string": "1\u0000\u0007Do the beastmen really wish to war with us again?"
},
{
"id": 7733,
"string": "1\u0000\u0007I will return to the chateau with these two. Be careful, friend."
}
]
}
]
},
{
"id": 17350961,
"name": "Cyranuce",
"events": [
{
"id": 32000,
"dialogue": [
]
},
{
"id": 32001,
"dialogue": [
]
}
]
},
{
"id": 17350962,
"name": "Rahal",
"events": [
{
"id": 32000,
"dialogue": [
]
},
{
"id": 32001,
"dialogue": [
]
}
]
},
{
"id": 17350963,
"name": "",
"events": [
{
"id": 32000,
"dialogue": [
]
},
{
"id": 32001,
"dialogue": [
]
}
]
},
{
"id": 17350974,
"name": "Logging Point",
"events": [
{
"id": 100,
"dialogue": [
{
"id": 7744,
"string": "s.\u0000\u0007You are unable to log anythin"
},
{
"id": 7742,
"string": "s!\u0000\u0007You successfully cut off \u0001\u0001\u0001 \u0001\u0005$???"
},
{
"id": 7741,
"string": "1\u0000\u0007Your \u0001\u0005#???? break"
},
{
"id": 7743,
"string": "?!\u0000\u0007You cut off \u0001\u0001\u0001 \u0001\u0005$????, but your \u0001\u0005#???? breaks in the proces"
},
{
"id": 7745,
"string": "g.\u0000\u0007You cannot carry any more items. Your inventory is ful"
}
]
}
]
},
{
"id": 17350978,
"name": "EVENTER",
"events": [
{
"id": 55,
"dialogue": [
]
}
]
},
{
"id": 17350979,
"name": "Trion",
"events": [
{
"id": 55,
"dialogue": [
{
"id": 7746,
"string": "l.\u0000\u0007Wait!"
},
{
"id": 7747,
"string": "1\u0000\u0007You are the adventurer that Pieuje sent, are you not?"
},
{
"id": 7749,
"string": "1\u0000\u0007On behalf of my spineless brother, I thank you."
},
{
"id": 7752,
"string": "1\u0000\u0007Well, enough blather. Let us save the boy. Open the door!"
},
{
"id": 7753,
"string": "1\u0000\u0007Is anyone here?"
}
]
}
]
},
{
"id": 17350980,
"name": "Kishi01",
"events": [
{
"id": 55,
"dialogue": [
]
}
]
},
{
"id": 17350981,
"name": "Kishi02",
"events": [
{
"id": 55,
"dialogue": [
]
}
]
},
{
"id": 17350982,
"name": "Tedimout",
"events": [
{
"id": 55,
"dialogue": [
{
"id": 7754,
"string": "1\u0000\u0007Why, Your Highness!"
}
]
}
]
},
{
"id": 17350983,
"name": "Ramblix",
"events": [
{
"id": 56,
"dialogue": [
{
"id": 7782,
"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": 7783,
"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": 7784,
"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": 7792,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 7793,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007Save the Children(pt.1).\u0007Save the Children(pt.2).\u0007Save the Children(pt.3-A).\u0007Save the Children(pt.3-B).\u0007The Holy Crest(pt.1).\u0007The Holy Crest(pt.2).\u0007Mirror, Mirror(pt.1).\u0007Mirror, Mirror(pt.2).\u0007Mirror, Mirror(pt.3).\u0007Face of the Future."
},
{
"id": 7786,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7794,
"string": "1\u0000\u0007"
},
{
"id": 7786,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7795,
"string": "1\u0000\u0007"
},
{
"id": 7786,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7796,
"string": "1\u0000\u0007"
},
{
"id": 7786,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7786,
"string": "1\u0000\u0007Oh...\u0007Well, if that's the case, I'm outta here."
},
{
"id": 7785,
"string": "1\u0000\u0007Now, listen close..."
}
]
}
]
},
{
"id": 17350985,
"name": "",
"events": [
{
"id": 32001,
"dialogue": [
]
},
{
"id": 32004,
"dialogue": [
]
}
]
},
{
"id": 17350986,
"name": "",
"events": [
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17350987,
"name": "",
"events": [
{
"id": 32000,
"dialogue": [
]
},
{
"id": 32004,
"dialogue": [
]
}
]
},
{
"id": 17350988,
"name": "kagami_test",
"events": [
{
"id": 32000,
"dialogue": [
]
},
{
"id": 32004,
"dialogue": [
]
}
]
},
{
"id": 17350990,
"name": "???",
"events": [
]
},
{
"id": 17350991,
"name": "",
"events": [
]
},
{
"id": 17350992,
"name": "",
"events": [
]
},
{
"id": 17350993,
"name": "",
"events": [
]
},
{
"id": 17350994,
"name": "",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17350995,
"name": "Excenmille",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7887,
"string": "!!\u0000\u0007<Huff, puff>..."
},
{
"id": 7889,
"string": "1\u0000\u0007What in the world...<gasp>...do you mean?\u0007How can there have been...<pant>...any indecision in that!?"
},
{
"id": 7896,
"string": "1\u0000\u0007Huh? Why foul your mouth with something bitter?\u0007That makes not a whit of sense..."
},
{
"id": 7900,
"string": "1\u0000\u0007<Puff, pant> All right...who's next...?"
},
{
"id": 7930,
"string": "1\u0000\u0007Wait! You mentioned seeing an Elvaan child being held captive..."
},
{
"id": 7931,
"string": "1\u0000\u0007Tell me what he looked like!"
},
{
"id": 7935,
"string": "1\u0000\u0007\b, the fault is mine that he's been taken! We must rescue him!"
}
]
}
]
},
{
"id": 17350996,
"name": "Excenmille",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7906,
"string": "!!\u0000\u0007Huh? Not an Orc?"
}
]
}
]
},
{
"id": 17350997,
"name": "Maxcimille",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7888,
"string": "1\u0000\u0007No. 'Twas no better than your last effort."
},
{
"id": 7890,
"string": "1\u0000\u0007You mask it with blind aggression, but these eyes will not be tricked.\u0007Like the fool who tries to swim clad in armor, your movements are encumbered by indecision still."
},
{
"id": 7891,
"string": "1\u0000\u0007Listen to me, boy. No man can undo his past."
},
{
"id": 7892,
"string": "1\u0000\u0007Every man gladly clings on to his joys and successes. But as a ship raises anchor that it might sail towards the horizon, so too must a man bear the weight of his failures if he would move forward."
},
{
"id": 7893,
"string": "1\u0000\u0007I shall share with you a pearl of wisdom."
},
{
"id": 7894,
"string": "1\u0000\u0007??He who would toast with victory's sweetest nectar must first partake of defeat's bitterest victuals.??"
},
{
"id": 7895,
"string": "1\u0000\u0007These are the words of my erstwhile teacher."
},
{
"id": 7897,
"string": "1\u0000\u0007<Sigh>... In time, you will come to understand.\u0007For now, stay focused on the enemy!"
},
{
"id": 7898,
"string": "1\u0000\u0007Hm? You're the adventurer from before..."
},
{
"id": 7899,
"string": "1\u0000\u0007Forgive me my introspection, but your resemblance to an acquaintance of decades past evokes within me memories of bygone days."
},
{
"id": 7908,
"string": "1\u0000\u0007I know that voice..."
},
{
"id": 7909,
"string": "1\u0000\u0007Be strong, man!"
},
{
"id": 7911,
"string": "1\u0000\u0007So, the dauntless agent who had infiltrated the den of Orcs was you all along!\u0007Altana's breath, 'tis good to see you alive...if somewhat the worse for wear."
},
{
"id": 7936,
"string": "1\u0000\u0007I've not given you leave, boy! Your training isn't complete!"
},
{
"id": 7937,
"string": "1\u0000\u0007Curses! He stands not a chance on his own.\u0007Lharant, take word to Bostillette. We shall precede the main force in infiltrating the enemy's lair."
},
{
"id": 7939,
"string": "1\u0000\u0007There's no helping it. Insolent as he may be, we cannot stand idly by while the boy rushes headlong into grave peril.\u0007Now go, Lharant!"
}
]
}
]
},
{
"id": 17350998,
"name": "Rahal",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17350999,
"name": "Lharant",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7910,
"string": "1\u0000\u0007Int...Intelligence Operative...<gasp>...Lharant...<wheeze>...reporting, sir..."
},
{
"id": 7912,
"string": "1\u0000\u0007No need for concern, sir. The internal injuries sustained from that fell blow are already--<cough, hack>--on the mend."
},
{
"id": 7913,
"string": "1\u0000\u0007More importantly, I come bearing intelligence on the latest Orcish activities.\u0007As breathing triggers some discomfort still, I'd be most obliged if you could lean closer..."
},
{
"id": 7929,
"string": "1\u0000\u0007...And that concludes my report."
},
{
"id": 7932,
"string": "1\u0000\u0007Regrettably, the dimness revealed little to me of the lad's appearance.\u0007I did, however, take note of the sword which lay at his side."
},
{
"id": 7933,
"string": "1\u0000\u0007'Twas a finely forged blade of fiery red steel, doubtless worth good coin. I suspect the lad is highborn."
},
{
"id": 7934,
"string": "1\u0000\u0007A friend of yours, I gather? Would that I could've extracted the lad, but the Orcs standing sentry made the task quite impossible."
},
{
"id": 7938,
"string": "1\u0000\u0007S-surely you jest!? You're but a few, and the statues are powerful and many!"
},
{
"id": 7940,
"string": "1\u0000\u0007Very well, sir. Before I leave, I would give you this \u0001\u00053????.\u0007It should allow you to escape the enemy's notice when you steal into the caverns."
},
{
"id": 7941,
"string": "1\u0000\u0007'Tis designed for single use, but spares can be obtained from the covert communications chest should the need arise."
},
{
"id": 7942,
"string": "1\u0000\u0007Please take all care, sir. I shall fly like the wind back to base camp."
}
]
}
]
},
{
"id": 17351000,
"name": "Orcish Fodder",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7901,
"string": "1\u0000\u0007Ah."
},
{
"id": 7903,
"string": "!!\u0000\u0007Uwaaaaaah! Stop! H-hold your morbols--I mean, chocobos!"
},
{
"id": 7907,
"string": "1\u0000\u0007Th-that was uncalled for..."
}
]
}
]
},
{
"id": 17351001,
"name": "Orcish Fodder",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17351002,
"name": "Zogbog",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7914,
"string": "1\u0000\u0007(Th-this is...)"
},
{
"id": 7915,
"string": "1\u0000\u0007(Magnificent! Magnificent beyond words! So, this is the fruit of twenty years of labor!)"
},
{
"id": 7917,
"string": "1\u0000\u0007(Egads, Mekglok! How you've aged! Though two decades would do this to any Orc, to be sure.)"
},
{
"id": 7918,
"string": "1\u0000\u0007(Well pleased am I with your dedication. Entrusting the blueprints to you was a decision most wise.)"
},
{
"id": 7920,
"string": "1\u0000\u0007(Gahaha! Dependable as ever, I see! Now, tell me. Is it operational?)"
},
{
"id": 7923,
"string": "1\u0000\u0007<Gasp>!"
},
{
"id": 7924,
"string": "1\u0000\u0007(D-do my eyes play at mischief? Dare I hope that before me stands a mighty legion, ready to carry out my bidding?)"
},
{
"id": 7926,
"string": "1\u0000\u0007(B-beyond my wildest dreams! With these miracles of science at my disposal, history shall be at my mercy!)"
},
{
"id": 7927,
"string": "1\u0000\u0007Gahahaha..."
},
{
"id": 7928,
"string": "1\u0000\u0007Gwahahahahaha!!!"
},
{
"id": 7943,
"string": "1\u0000\u0007(What? An Elvaan child on the loose, causing mayhem in Ghelsba, you say?)"
},
{
"id": 7944,
"string": "1\u0000\u0007(Excenmille, I'll wager...)"
},
{
"id": 7945,
"string": "1\u0000\u0007(Mekglok, ready the statues for immediate deployment.)"
},
{
"id": 7947,
"string": "1\u0000\u0007(No. Not only those.)"
},
{
"id": 7948,
"string": "1\u0000\u0007(I would see the crowning glory of my legion christened in battle.)"
},
{
"id": 7950,
"string": "1\u0000\u0007(The enemy is but one scrawny Elvaan boy...plus what other vermin crawls out of the woodwork.)"
},
{
"id": 7951,
"string": "1\u0000\u0007(This shall serve perfectly as the final test run before I send forth my legion to conquer the past!)"
},
{
"id": 7953,
"string": "1\u0000\u0007(Enough! You will do as I say!)"
},
{
"id": 7955,
"string": "1\u0000\u0007(Gahaha... The moment of our showdown is come, Excenmille.)"
},
{
"id": 7956,
"string": "1\u0000\u0007(By the honor of my fallen clan, I swear I shall have satisfaction of you this day!)"
}
]
}
]
},
{
"id": 17351003,
"name": "Rivetpounder Mekglok",
"events": [
{
"id": 57,
"dialogue": [
{
"id": 7916,
"string": "1\u0000\u0007(Aaah, Master Zogbog! No see you long time!)"
},
{
"id": 7919,
"string": "1\u0000\u0007(Twenty year pass already? Me very enjoy work, so no feel like twenty year!)"
},
{
"id": 7921,
"string": "1\u0000\u0007(Right now me inject magic, Master Zogbog. It be ready soon.)"
},
{
"id": 7922,
"string": "1\u0000\u0007(Ah! Me want to show Master Zogbog something else. This way please come.)"
},
{
"id": 7925,
"string": "1\u0000\u0007(You like, Master Zogbog? Me already finish inject magic, so they ready to move.)"
},
{
"id": 7946,
"string": "1\u0000\u0007(If you mean small one, they already ready, Master Zogbog.)"
},
{
"id": 7949,
"string": "1\u0000\u0007(Huh? M-Master Zogbog, me not finish inject magic into big one. And many trial to run--)"
},
{
"id": 7952,
"string": "1\u0000\u0007(B-but Master Zogbog...)"
},
{
"id": 7954,
"string": "1\u0000\u0007(Y-yes, Master Zogbog.)"
}
]
}
]
},
{
"id": 17351004,
"name": "kyo",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17351005,
"name": "orc01",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17351006,
"name": "orc02",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17351007,
"name": "orc03",
"events": [
{
"id": 57,
"dialogue": [
]
}
]
},
{
"id": 17351008,
"name": "orc04",
"events": [
{
"id": 57,
"dialogue": [
]
}
]