forked from KnowOne134/FFXI_Events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabyssea_-_empyreal_paradox.json
1009 lines (981 loc) · 39.6 KB
/
abyssea_-_empyreal_paradox.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": 255,
"name": "Abyssea - Empyreal Paradox",
"actors": [
{
"id": 17821706,
"name": "Cruor Prospector",
"events": [
{
"id": 2002,
"dialogue": [
{
"id": 7261,
"string": "1\u0000\u0007Greetings, traveler. I am a resistance officer whose charge is the procurement of cruor.\u0007If you would be willing to part with any cruor you possess, I will issue you with helpful items in return."
},
{
"id": 7262,
"string": "1\u0000\u0007What will you do? (Cruor balance: \n\u0000)\u0007\u000bNothing.\u0007Learn about cruor.\u0007Exchange for items.\u0007Exchange for temporary items.\u0007Exchange for key items.\u0007Exchange for enhancement effects.\u0007Dispose of abyssite."
},
{
"id": 7263,
"string": "1\u0000\u0007Cruor is a naturally occurring mineral found as deposits on creatures native to Abyssea."
},
{
"id": 7264,
"string": "1\u0000\u0007Known by some as ??blood gold,?? these red granules are highly prized and see use as both energy source and construction material."
},
{
"id": 7265,
"string": "1\u0000\u0007It would be no exaggeration to say that cruor is the lifeblood of the resistance effort.\u0007As a matter of fact, the bulk of items I have in stock are cruor-based."
},
{
"id": 7266,
"string": "1\u0000\u0007Chief among them being ??ancient abyssite,?? a highly concentrated, doubly valuable form of the stone boasting diverse benefits."
},
{
"id": 7267,
"string": "1\u0000\u0007Ancient abyssite has been observed to improve the fortunes and vitality of their possessors, not unlike a good luck talisman."
},
{
"id": 7268,
"string": "1\u0000\u0007The most popular varieties offer extended visitant status time, accelerated growth, and myriad enhancement effects.\u0007Some are even said to improve luck, but such benefits can be troublesome to measure."
},
{
"id": 7269,
"string": "1\u0000\u0007I am limited in the types of ancient abyssite I can issue. The opportunity to acquire rarer varieties, however, will surely visit you during your time in Abyssea."
},
{
"id": 7270,
"string": "1\u0000\u0007Besides the issuance of items, I am also authorized to imbue you with enhancement effects."
},
{
"id": 7271,
"string": "1\u0000\u0007Select item. (Cruor: \n\u0000)\u0007\u000bNothing right now.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0002.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0004.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0006.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\b.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\n.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\f.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u000e.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0010.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0012.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0014.\u0007Previous page.\u0007Next page."
},
{
"id": 7276,
"string": "1\u0000\u0007Trade for \u0001\u0001\u0001 \u0001\u0005$?????"
},
{
"id": 7308,
"string": "1\u0000\u0007Trade for how many? (Cruor balance: \n\u0000)\u0007\u000bNone for now.\u0007\n\u0001 (\n\u0002 cruor).\u0007\n\u0003 (\n\u0004 cruor).\u0007\n\u0005?i\n\u0006 cruor).\u0007\n\u0007?i\n\b cruor).\u0007\n\t (\n\n cruor)."
},
{
"id": 7309,
"string": "1\u0000\u0007Trade for \n\u0001 of the item?\u0007\u000bYes.\u0007No."
},
{
"id": 7289,
"string": "1\u0000\u0007You do not have enough cruor."
},
{
"id": 7278,
"string": "1\u0000\u0007Trade for \u0001\u0001\u0001 \u0001\u0005$?????\u0007\u000bYes.\u0007No."
},
{
"id": 7289,
"string": "1\u0000\u0007You do not have enough cruor."
},
{
"id": 7272,
"string": "1\u0000\u0007Select item. (Cruor: \n\u0000)\u0007\u000bNothing right now.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0002.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0004.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0006.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\b.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\n.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\f.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u000e.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0010.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0012.\u0007?\u0001\u0001\u0001\u0001 \u0001\u0005$????: \n\u0014.\u0007Previous page.\u0007Next page."
},
{
"id": 7277,
"string": "1\u0000\u0007Trade for \u0001\u0001\u0001 \u0001\u0005$?????"
},
{
"id": 7279,
"string": "1\u0000\u0007Trade for \u0001\u0001\u0001 \u0001\u0005$?????\u0007\u000bYes.\u0007No."
},
{
"id": 7289,
"string": "1\u0000\u0007You do not have enough cruor."
},
{
"id": 7273,
"string": "1\u0000\u0007Select key item. (Cruor: \n\u0000)\u0007\u000bNothing right now.\u0007?\u0001\u0001\u00056????: \n\u0002.\u0007?\u0001\u0001\u00056????: \n\u0004.\u0007?\u0001\u0001\u00056????: \n\u0006.\u0007?\u0001\u0001\u00056????: \n\b.\u0007?\u0001\u0001\u00056????: \n\n.\u0007?\u0001\u0001\u00056????: \n\f.\u0007?\u0001\u0001\u00056????: \n\u000e.\u0007?\u0001\u0001\u00056????: \n\u0010.\u0007?\u0001\u0001\u00056????: \n\u0012.\u0007?\u0001\u0001\u00056????: \n\u0014.\u0007Previous page.\u0007Next page."
},
{
"id": 7293,
"string": "1\u0000\u0007This ancient abyssite helps to stabilize your existential phase, allowing you to remain in Abyssea for longer durations."
},
{
"id": 7298,
"string": "1\u0000\u0007This ancient abyssite resonates with the ground beneath you, allowing you to obtain more \u0001\u00055????."
},
{
"id": 7294,
"string": "1\u0000\u0007This ancient abyssite facilitates energy release, making travel through Veridical Confluxes possible with fewer cruor."
},
{
"id": 7295,
"string": "1\u0000\u0007This ancient abyssite mitigates mechanical wear, reducing the cool-off duration when using martellos."
},
{
"id": 7296,
"string": "1\u0000\u0007This ancient abyssite resonates with treasure, increasing your likelihood of finding spoils after battle."
},
{
"id": 7299,
"string": "1\u0000\u0007This ancient abyssite resonates with treasure, increasing your likelihood of encountering blue pyxides."
},
{
"id": 7297,
"string": "1\u0000\u0007This ancient abyssite heightens your senses, allowing you to unlock treasure chests with greater ease."
},
{
"id": 7300,
"string": "1\u0000\u0007This ancient abyssite imbues your soul with great strength, allowing you to infuse an additional atma for each piece possessed."
},
{
"id": 7301,
"string": "1\u0000\u0007This is a map of Abyssea - La Theine. Don't leave home without it!"
},
{
"id": 7302,
"string": "1\u0000\u0007This is a map of Abyssea - Konschtat. Don't leave home without it!"
},
{
"id": 7303,
"string": "1\u0000\u0007This is a map of Abyssea - Tahrongi. Don't leave home without it!"
},
{
"id": 7304,
"string": "1\u0000\u0007This is a map of Abyssea - Attohwa. Don't leave home without it!"
},
{
"id": 7305,
"string": "1\u0000\u0007This is a map of Abyssea - Misareaux. Don't leave home without it!"
},
{
"id": 7306,
"string": "1\u0000\u0007This is a map of Abyssea - Vunkerl. Don't leave home without it!"
},
{
"id": 7307,
"string": "1\u0000\u0007Certain monsters in Abyssea loath contact with people, concealing themselves from detection. Only with this abyssite will you be able to uncloak and confront them. Go into a crouch with it in your possession, and the way will be revealed to you."
},
{
"id": 7280,
"string": "1\u0000\u0007Trade for \u0001\u00056?????\u0007\u000bYes.\u0007No."
},
{
"id": 7289,
"string": "1\u0000\u0007You do not have enough cruor."
},
{
"id": 7274,
"string": "1\u0000\u0007Select enhancement. (Cruor: \n\u0000)\u0007\u000bNothing for now.\u0007Reraise: \n\u0001.\u0007Protect: \n\u0002.\u0007Shell: \n\u0003.\u0007Regen: \n\u0004.\u0007Refresh: \n\u0005.\u0007HP boost: \n\u0006.\u0007MP boost: \n\u0007.\u0007STR-DEX boost: \n\b.\u0007VIT-AGI boost: \n\t.\u0007INT-MND-CHR boost: \n\n.\u0007All enhancements: \n\u000b."
},
{
"id": 7281,
"string": "1\u0000\u0007\f\u0000[\/?????C?Y\/?v???e?X\/?V?F??\/???W?F?l\/???t???V??\/HP?A?b?v\/MP?A?b?v\/STR??DEX?A?b?v\/VIT??AGI?A?b?v\/INT??MND??CHR?A?b?v\/??????]?????????????????H\u0007Trade for \f\u0000[\/Reraise\/Protect\/Shell\/Regen\/Refresh\/HP boost\/MP boost\/STR-DEX boost\/VIT-AGI boost\/INT-MND-CHR boost\/all enhancements]?\u0007\u000bYes.\u0007No."
},
{
"id": 7289,
"string": "1\u0000\u0007You do not have enough cruor."
}
]
}
]
},
{
"id": 17821707,
"name": "Atma Infusionist",
"events": [
{
"id": 2003,
"dialogue": [
{
"id": 7311,
"string": "1\u0000\u0007Well met, wayfarer. I am an Atma Infusionist, and from my title I trust you can glean my field of expertise.\u0007Those who possess \u0001\u00056???? may come to me to have atma infused."
},
{
"id": 7312,
"string": "1\u0000\u0007How might I serve you?\u0007\u000bYou may not.\u0007Tell me about atma.\u0007Infuse me with atma.\u0007Examine infused atma.\u0007Purge atma.\u0007Reinfuse previous atma set.\u0007Select from recent history."
},
{
"id": 7313,
"string": "1\u0000\u0007Atma is most accurately described as the crystalline agglomeration of an Abyssean creature's soul.\u0007Through painstaking research, we infusionists have discovered a way to imbue ordinary people such as yourself with its power."
},
{
"id": 7314,
"string": "1\u0000\u0007Infusion makes possible the augmentation of individuals, granting them powers particular to the creature from which the atma is sourced."
},
{
"id": 7315,
"string": "1\u0000\u0007The infusion process requires three objects: an atma, \u0001\u00056????, and cruor."
},
{
"id": 7316,
"string": "1\u0000\u0007?\u0001\u0001\u00056???? is a rare variety of ancient abyssite that can only be procured with great difficulty.\u0007And it won't please you to know that atma is rarer still."
},
{
"id": 7317,
"string": "1\u0000\u0007For only the most savage creatures, you see, are known to yield atma.\u0007And if you thought that weren't trial enough, only by employing special combat strategies will atma be yours to own."
},
{
"id": 7318,
"string": "1\u0000\u0007Atma-yielding monsters are known to have vulnerabilities that, if exploited, may result in a swift end to the confrontation."
},
{
"id": 7319,
"string": "1\u0000\u0007Strike at a foe's weakness, and it will drop different spoils, often more valuable than usual. Among them you may find atma."
},
{
"id": 7320,
"string": "1\u0000\u0007The vulnerabilities can broadly be divided into three categories: magic attacks, physical-based weapon skills, and magic-based weapon skills."
},
{
"id": 7321,
"string": "1\u0000\u0007For instance, there are monsters known to be weak against magic-based weapon skills.\u0007Inflicting such damage upon them will impair their movement, and you may consequently be rewarded with atma."
},
{
"id": 7322,
"string": "1\u0000\u0007All living creatures, however, possess the capacity to adapt, and vulnerabilities have been observed to change.\u0007Be wary if you wish not to discover to your sorrow that a once-foolproof strategy no longer applies."
},
{
"id": 7323,
"string": "1\u0000\u0007Besting such fell creatures is in itself a harrowing task, and becomes even more so if procuring atma is your objective."
},
{
"id": 7324,
"string": "1\u0000\u0007But should fortune smile upon you and you find yourself in possession of atma, bring it here.\u0007I will see that it serves you well."
},
{
"id": 7325,
"string": "1\u0000\u0007Which atma will you have infused?\u0007\u000bNone for now.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Previous page.\u0007Next page."
},
{
"id": 7326,
"string": "1\u0000\u0007\n\u0001 cruor is required to infuse the \u0001\u00053????."
},
{
"id": 7327,
"string": "1\u0000\u0007Have \u0001\u00053???? infused?\u0007\u000bConfirm.\u0007Cancel."
},
{
"id": 7328,
"string": "1\u0000\u0007You do not have enough cruor."
},
{
"id": 7329,
"string": "1\u0000\u0007You have already been infused with that atma."
},
{
"id": 7330,
"string": "1\u0000\u0007You cannot be infused with more than \n\u0000 atma at any given time.\u0007Please have an existing atma purged if you wish to replace it with another."
},
{
"id": 7331,
"string": "1\u0000\u0007Examine which atma?\u0007\u000bNone for now.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????."
},
{
"id": 7332,
"string": "1\u0000\u0007Purge which atma?\u0007\u000bNone for now.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Purge all."
},
{
"id": 7333,
"string": "1\u0000\u0007Purge \u0001\u00053?????\u0007\u000bYes.\u0007No."
},
{
"id": 7334,
"string": "1\u0000\u0007Purge all atma?\u0007\u000bYes.\u0007No."
},
{
"id": 7340,
"string": "1\u0000\u0007Reinfuse the following atma?\u0007\u000bOn second thought, no.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Make it so."
},
{
"id": 7341,
"string": "1\u0000\u0007\n\u0000 cruor will be required to reinfuse your previous atma configuration."
},
{
"id": 7342,
"string": "1\u0000\u0007Proceed with the infusion?\u0007\u000bYes.\u0007No."
},
{
"id": 7328,
"string": "1\u0000\u0007You do not have enough cruor."
},
{
"id": 7344,
"string": "1\u0000\u0007It would seem you've already been infused with that atma configuration.\u0007Perhaps you meant to ask me to infuse some new atma instead?"
},
{
"id": 7345,
"string": "1\u0000\u0007Which atma will you have infused?\u0007\u000bNone for now.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????."
},
{
"id": 7346,
"string": "1\u0000\u0007Infuse the following atma?\u0007\u000bCancel.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007?\u0001\u0001\u00053????.\u0007Select new atma.\u0007Proceed."
},
{
"id": 7347,
"string": "1\u0000\u0007Replace currently infused atma?\u0007\u000bYes, replace.\u0007No, cancel."
},
{
"id": 7348,
"string": "1\u0000\u0007\n\u0000 cruor is required to infuse the selected atma."
},
{
"id": 7349,
"string": "1\u0000\u0007Have the selected atma infused?\u0007\u000bConfirm.\u0007Cancel."
},
{
"id": 7328,
"string": "1\u0000\u0007You do not have enough cruor."
}
]
}
]
},
{
"id": 17821709,
"name": "Cavernous Maw",
"events": [
{
"id": 200,
"dialogue": [
{
"id": 7675,
"string": "?.\u0000\u0007An unseen force is drawing you towards the maw."
},
{
"id": 7677,
"string": "1\u0000\u0007Warp to \f\u0000[Dummy\/the La Theine Plateau\/the Konschtat Highlands\/the Tahrongi Canyon\/the Buburimu Peninsula\/the Valkurm Dunes\/the Jugner Forest\/South Gustaberg\/North Gustaberg\/Xarcabard\/Qufim Island]?\u0007\u000bProceed.\u0007Not yet."
}
]
},
{
"id": 202,
"dialogue": [
]
},
{
"id": 203,
"dialogue": [
]
},
{
"id": 204,
"dialogue": [
]
},
{
"id": 205,
"dialogue": [
]
},
{
"id": 206,
"dialogue": [
]
},
{
"id": 207,
"dialogue": [
]
}
]
},
{
"id": 17821710,
"name": "Transcendental Radiance",
"events": [
{
"id": 202,
"dialogue": [
]
},
{
"id": 203,
"dialogue": [
]
},
{
"id": 204,
"dialogue": [
]
},
{
"id": 205,
"dialogue": [
]
},
{
"id": 206,
"dialogue": [
]
},
{
"id": 207,
"dialogue": [
]
},
{
"id": 208,
"dialogue": [
]
},
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17821712,
"name": "Transcendental Radiance",
"events": [
{
"id": 208,
"dialogue": [
]
},
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17821718,
"name": "Trailmix",
"events": [
{
"id": 201,
"dialogue": [
{
"id": 7690,
"string": "1\u0000\u0007I travel......hear lots...\u0007Hear...stories... Can tell...if..."
},
{
"id": 8069,
"string": "1\u0000\u0007Do you want to hear a story?\u0007\u000bNo, thank you.\u0007Let's hear one."
},
{
"id": 8070,
"string": "1\u0000\u0007What story would you like to be told?\u0007\u000bOn second thought, maybe later.\u0007The Wyrm God(pt.1).\u0007The Wyrm God(pt.2).\u0007The Wyrm God(pt.3).\u0007Meanwhile, Back on Abyssea.\u0007A Moonlight Requite."
},
{
"id": 7692,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 8071,
"string": "1\u0000\u0007"
},
{
"id": 7692,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 8072,
"string": "1\u0000\u0007"
},
{
"id": 7692,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 8073,
"string": "1\u0000\u0007"
},
{
"id": 7692,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7692,
"string": "1\u0000\u0007Oh......\u0007...outta here........."
},
{
"id": 7691,
"string": "1\u0000\u0007.........listen......"
}
]
}
]
},
{
"id": 17821720,
"name": "",
"events": [
{
"id": 202,
"dialogue": [
{
"id": 8076,
"string": "1\u0000\u0007What will you say?\u0007\u000bP-Prishe?\u0007What's a girl like you..."
},
{
"id": 8152,
"string": "1\u0000\u0007?@?@ 4\u0001\u0000\u0007\u0000\u0000"
},
{
"id": 8087,
"string": "1\u0000\u0007What do you say?\u0007\u000bSnap out of it, Prishe!\u0007Say nothing and continue on."
},
{
"id": 8152,
"string": "1\u0000\u0007?@?@ 4\u0001\u0000\u0007\u0000\u0000"
},
{
"id": 8096,
"string": "1\u0000\u0007What do you say?\u0007\u000bYou just leave it to me!\u0007Smile in response."
},
{
"id": 8098,
"string": "1\u0000\u0007\u001f\u000f\b flashes ?[his\/her] pearly whites at Prish"
}
]
},
{
"id": 203,
"dialogue": [
]
},
{
"id": 204,
"dialogue": [
{
"id": 8152,
"string": "1\u0000\u0007?@?@ 4\u0001\u0000\u0007\u0000\u0000"
}
]
},
{
"id": 208,
"dialogue": [
]
}
]
},
{
"id": 17821721,
"name": "Prishe",
"events": [
{
"id": 202,
"dialogue": [
{
"id": 8079,
"string": "1\u0000\u0007..."
},
{
"id": 8080,
"string": "1\u0000\u0007So all hell broke loose on Abyssea..."
},
{
"id": 8082,
"string": "1\u0000\u0007There's something I need to say.\u0007The wretched state of the world--it's...it's all our fault."
},
{
"id": 8083,
"string": "1\u0000\u0007I bet you've already figured it out."
},
{
"id": 8084,
"string": "1\u0000\u0007We went up against Promathia, \b.\u0007We took on the Twilight God...but we couldn't finish the job."
},
{
"id": 8091,
"string": "1\u0000\u0007Why, you're every ilm the gutsy adventurer the \b I knew was!\u0007Always setting the bar so high, you make me look bad, you know?"
},
{
"id": 8092,
"string": "1\u0000\u0007At any rate, it's good to know that \b will always be \b, no matter what dimension ?[he\/she] hails from."
},
{
"id": 8093,
"string": "1\u0000\u0007I do notice one difference, though.\u0007The oodles and oodles of power you emanate--it seems to be something inherent to folk of your world."
},
{
"id": 8094,
"string": "1\u0000\u0007I hate to admit it, but it's obvious I'll just end up cramping your style if I tag along.1\u0000;???????????????"
},
{
"id": 8095,
"string": "???\u0007Therefore, I'm going to sit this one out.\u0007My world, Abyssea--it's all in your hands now, \b."
},
{
"id": 8097,
"string": "1\u0000\u0007Hehehe, ever the reliable adventurer, I see."
},
{
"id": 8099,
"string": "e.\u0000\u0007Ah, how many times have I seen that doltish grin of yours? Sure brings back memories."
},
{
"id": 8100,
"string": "1\u0000\u0007Now, let me be dead serious for a moment, \b."
},
{
"id": 8101,
"string": "1\u0000\u0007You're bursting at the seams with power that people of Abyssea can only dream of, this is true."
},
{
"id": 8103,
"string": "1\u0000\u0007In absorbing our friend Selh'teus into His being, the Twilight God has evolved and taken on a fearsome new form: terror and dread made flesh."
},
{
"id": 8104,
"string": "1\u0000\u0007He looks more like a wyrm now, but one that's bigger, badder, and uglier than anything you've ever seen."
},
{
"id": 8105,
"string": "1\u0000\u0007But hey, don't let these little details unnerve you."
},
{
"id": 8106,
"string": "1\u0000\u0007When you square off against this souped-up Promathia, the foremost thing to keep in mind is to be yourself.\u0007That's right, \b. Be your bloodthirsty, ruthless self."
},
{
"id": 8107,
"string": "1\u0000\u0007Ready yourself as best you can, because if even the extra-dimensional version of you can't come out on top, then--the Goddess forbid--Abyssea truly is screwed."
}
]
},
{
"id": 203,
"dialogue": [
{
"id": 8109,
"string": "1\u0000\u0007I always knew you could do it, but still, I was on pins and needles the whole time. I'd already lost you once before, after all."
},
{
"id": 8110,
"string": "1\u0000\u0007It's just as I feared, though. Defeating a god won't turn back time--won't undo all the damage in the blink of an eye.\u0007Those who were taken won't be coming back, while those who remain will have to rebuild their world the old-fashioned way."
},
{
"id": 8112,
"string": "1\u0000\u0007Do you notice?"
},
{
"id": 8113,
"string": "1\u0000\u0007Promathia's gone, but neither can I hear the voice of the Goddess.\u0007I'm sure she's grieving in silence even as we speak."
},
{
"id": 8116,
"string": "1\u0000\u0007Things may never be the same again, but I still mean to put to good use the long life I've been given.\u0007I'm going to stay here and keep watch over the world, see where it's headed."
},
{
"id": 8117,
"string": "1\u0000\u0007You'd have to go a long way to find a better view than here. Don't you think, \b?"
},
{
"id": 8119,
"string": "1\u0000\u0007If this is the moon we're standing on, then that thing a hojillion malms away must be Abyssea."
},
{
"id": 8121,
"string": "1\u0000\u0007This place, though, holds special meaning for me. After all, it's where I fought my last battle beside my friends."
},
{
"id": 8123,
"string": "1\u0000\u0007And that's why I have to stay."
},
{
"id": 8124,
"string": "1\u0000\u0007Rough days are still ahead for Abyssea, and it pains me that I won't be around to help out."
},
{
"id": 8125,
"string": "1\u0000\u0007But with you on the job, I know I've got nothing to worry about."
},
{
"id": 8126,
"string": "1\u0000\u0007When you get back, I want you to deliver a message to the cardinal.\u0007Tell her that I'm alive, and in strapping shape as always."
},
{
"id": 8127,
"string": "1\u0000\u0007Tell her also...that I'm sorry."
},
{
"id": 8128,
"string": "1\u0000\u0007Folk would call me improper to send a god-slayer as my errand ?[boy\/girl].\u0007But as you can see, there's no one else around I can ask to do this favor."
}
]
},
{
"id": 204,
"dialogue": [
{
"id": 8130,
"string": "1\u0000\u0007Hey! If it isn't the other \b!\u0007Did you forget something when you left?"
},
{
"id": 8131,
"string": "1\u0000\u0007Or perhaps--dare I hope--you came all this way to see little old me? Hmmm?"
},
{
"id": 8132,
"string": "1\u0000\u0007Aaah, poor Prishe, never a moment to herself! But such is the price of popularity!"
},
{
"id": 8079,
"string": "1\u0000\u0007..."
},
{
"id": 8134,
"string": "1\u0000\u0007But never mind that. It's truly good to see you again, \b."
},
{
"id": 8135,
"string": "1\u0000\u0007And it appears you've already delivered my message to the cardinal."
},
{
"id": 8139,
"string": "1\u0000\u0007When I saw you coming, \b, my heart skipped a beat.\u0007I thought it'd leap out of my chest for the joy, no exaggeration!"
},
{
"id": 8141,
"string": "1\u0000\u0007All right?"
},
{
"id": 8144,
"string": "1\u0000\u0007It's a promise, \b! Don't even think of breaking it!"
},
{
"id": 8145,
"string": "1\u0000\u0007Now, look here. As a show of gratitude, I'm going to give you a present."
},
{
"id": 8146,
"string": "1\u0000\u0007It's \u0001\u00056????, something that once belonged to the you of Abyssea."
},
{
"id": 8147,
"string": "1\u0000\u0007?[He\/She] would have wanted you to have it, \b."
},
{
"id": 8148,
"string": "1\u0000\u0007Take good care of it as if it were me, you hear?"
}
]
},
{
"id": 205,
"dialogue": [
{
"id": 8100,
"string": "1\u0000\u0007Now, let me be dead serious for a moment, \b."
},
{
"id": 8101,
"string": "1\u0000\u0007You're bursting at the seams with power that people of Abyssea can only dream of, this is true."
},
{
"id": 8102,
"string": "1\u0000\u0007However, the enemy that awaits beyond isn't the run-of-the-mill man-god you might be expecting."
},
{
"id": 8103,
"string": "1\u0000\u0007In absorbing our friend Selh'teus into His being, the Twilight God has evolved and taken on a fearsome new form: terror and dread made flesh."
},
{
"id": 8104,
"string": "1\u0000\u0007He looks more like a wyrm now, but one that's bigger, badder, and uglier than anything you've ever seen."
},
{
"id": 8105,
"string": "1\u0000\u0007But hey, don't let these little details unnerve you."
},
{
"id": 8106,
"string": "1\u0000\u0007When you square off against this souped-up Promathia, the foremost thing to keep in mind is to be yourself.\u0007That's right, \b. Be your bloodthirsty, ruthless self."
},
{
"id": 8107,
"string": "1\u0000\u0007Ready yourself as best you can, because if even the extra-dimensional version of you can't come out on top, then--the Goddess forbid--Abyssea truly is screwed."
}
]
},
{
"id": 206,
"dialogue": [
{
"id": 8124,
"string": "1\u0000\u0007Rough days are still ahead for Abyssea, and it pains me that I won't be around to help out."
},
{
"id": 8125,
"string": "1\u0000\u0007But with you on the job, I know I've got nothing to worry about."
},
{
"id": 8126,
"string": "1\u0000\u0007When you get back, I want you to deliver a message to the cardinal.\u0007Tell her that I'm alive, and in strapping shape as always."
},
{
"id": 8127,
"string": "1\u0000\u0007Tell her also...that I'm sorry."
},
{
"id": 8128,
"string": "1\u0000\u0007Folk would call me improper to send a god-slayer as my errand ?[boy\/girl].\u0007But as you can see, there's no one else around I can ask to do this favor."
},
{
"id": 8129,
"string": "1\u0000\u0007We may be of different worlds, but ours is a friendship of dimension transcending!\u0007Go well, \b, and thank you. I hope it won't be long before we meet again."
}
]
},
{
"id": 207,
"dialogue": [
{
"id": 8149,
"string": "1\u0000\u0007I've never had so much free time in my life. It's all I can do to find things to occupy myself.\u0007Perhaps I'll go for a stroll along the surface of the moon. Moonlighting--heheh, you get it?"
},
{
"id": 8150,
"string": "1\u0000\u0007No? Damn it, I really am losing my edge..."
}
]
}
]
},
{
"id": 17821722,
"name": "",
"events": [
{
"id": 208,
"dialogue": [
]
},
{
"id": 32000,
"dialogue": [
]
}
]
},
{
"id": 17821723,
"name": "???",
"events": [
{
"id": 202,
"dialogue": [
]
},
{
"id": 203,
"dialogue": [
]
},
{
"id": 204,
"dialogue": [
]
}
]
},
{
"id": 17821724,
"name": "",
"events": [
{
"id": 202,
"dialogue": [
]
},
{
"id": 203,
"dialogue": [
]
},
{
"id": 204,
"dialogue": [
]
}
]
},
{
"id": 2147483632,
"name": "",
"events": [
{
"id": 32000,
"dialogue": [
{
"id": 8068,
"string": "?!\u0000\u0007Which battlefield will you enter?\u0007\u000bNone.\u0007The Wyrm God.\u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 \u0007 "
},
{
"id": 7693,
"string": "1\u0000\u0007Enter the battlefield?\u0007\u000bEnter.\u0007Decline."
},
{
"id": 7704,
"string": "1\u0000\u0007You are cleared to enter the battlefield, but you cannot while party members are engaged in combat.4\u0001"
},
{
"id": 7705,
"string": "1\u0000\u0007You are cleared to enter the battlefield, but you cannot while party members are engaged in combat.4\u0001"
},
{
"id": 7706,
"string": "1\u0000\u0007You are cleared to enter the battlefield, but you cannot while party members are engaged in combat.4\u0001"
},
{
"id": 7707,
"string": "1\u0000\u0007You are cleared to enter the battlefield, but you cannot while party members are engaged in combat.4\u0001"
},
{
"id": 7743,
"string": "1\u0000\u0007You do not meet the requirements to enter the battlefield. Access is denied."
},
{
"id": 8052,
"string": "1\u0000\u0007Only \n\u0003 ?\u0003[member\/members] have clearance to enter the battlefield. This room has reached its maximum capacity."
},
{
"id": 8032,
"string": "1\u0000\u0007Skip the event?\u0007\u000bYes.\u0007No."
},
{
"id": 7696,
"string": "1\u0000\u0007You cannot enter the battlefield at present. Please wait a little longer.4\u0001"
}
]
},
{
"id": 32001,
"dialogue": [
{
"id": 8032,
"string": "1\u0000\u0007Skip the event?\u0007\u000bYes.\u0007No."
}
]
},
{
"id": 32002,
"dialogue": [
]
},
{
"id": 32003,
"dialogue": [
]
},
{
"id": 32004,
"dialogue": [
{