-
Notifications
You must be signed in to change notification settings - Fork 15
/
vision_cards.json
executable file
·12959 lines (12959 loc) · 496 KB
/
vision_cards.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
{
"100000101": {
"name": "A New Journey",
"compendium_id": 2,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [50, 80, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236253],
"7": [236254],
"10": [236255]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rain, Lasswell, and Fina as they speed by on chocobos. A new journey dances in each of their hearts as they soar like the wind across the wide, open fields.",
"info": "Rain, Lasswell, and Fina as they speed by on chocobos. A new journey dances in each of their hearts as they soar like the wind across the wide, open fields.",
"shop": "A New Journey",
"music": "Amigo de Chocobo",
"music_id": "400110"
}
},
"100000201": {
"name": "Knights who Soar the Skies",
"compendium_id": 3,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [35, 50, 0, 0],
"DEF": [35, 50, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236256],
"7": [236257]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rain and Lasswell as they attack enemies aboard an airship. These knights were confused by the onslaught of small monsters who should fear airships, with no way to know that this was the mere beginning of a battle with the world's survival hanging in the balance.",
"info": "Rain and Lasswell as they attack enemies aboard an airship. These knights were confused by the onslaught of small monsters who should fear airships, with no way to know that this was the mere beginning of a battle with the world's survival hanging in the balance.",
"shop": "Knights who Soar the Skies",
"music": "United We Stand",
"music_id": "400102"
}
},
"100000301": {
"name": "The Water God and Priestess",
"compendium_id": 4,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [20, 40, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236258],
"10": [236259]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Water priestess, Luka, as she purifies the waters of Lake Dorr, and the water god Leviathan, who watches over her. The water god seems to be consoling Luka, who may require years upon years to fulfill her duty of purifying the lake alone.",
"info": "Water priestess, Luka, as she purifies the waters of Lake Dorr, and the water god Leviathan, who watches over her. The water god seems to be consoling Luka, who may require years upon years to fulfill her duty of purifying the lake alone.",
"shop": "The Water God and Priestess",
"music": "Mystic Ruins",
"music_id": "400205"
}
},
"100000401": {
"name": "A Vengeful Blow",
"compendium_id": 5,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [45, 60, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"7": [236260],
"10": [236261]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rain and Lasswell at the Earth Shrine as they confront a mysterious armor-clad intruder. The intruder unleashed a powerful attack at the duo, who warned him against coming near the Earth Crystal.",
"info": "Rain and Lasswell at the Earth Shrine as they confront a mysterious armor-clad intruder. The intruder unleashed a powerful attack at the duo, who warned him against coming near the Earth Crystal.",
"shop": "A Vengeful Blow",
"music": "End is Nigh",
"music_id": "400103"
}
},
"100000501": {
"name": "In Order to Change the World",
"compendium_id": 9,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 100, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236280],
"7": [236281],
"10": [236282]
},
"restriction": {
"236282": [7102]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rain, overwhelmed with sadness in the ruined town of Sacher. Due to the royal blood within his veins, he lost the girl who saved his life, resolving himself to change the world. Wielding a cruel blade, he joins the Orders in hopes of becoming the next emperor.",
"info": "Rain, overwhelmed with sadness in the ruined town of Sacher. Due to the royal blood within his veins, he lost the girl who saved his life, resolving himself to change the world. Wielding a cruel blade, he joins the Orders in hopes of becoming the next emperor.",
"shop": "In Order to Change the World",
"music": "Forgiveness",
"music_id": "400333"
}
},
"100000601": {
"name": "Guiding the Youth",
"compendium_id": 11,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 100, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236550],
"7": [236551],
"10": [236552]
},
"restriction": {
"236552": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Realizing that Lasswell is struggling with his own feelings interfering with the fulfillment of his duties as king, Akstar challenges him to a sparring session. Determined to steer him in the right direction, Akstar bestows upon him a new skill of his own creation—the guiding mirror of equity.",
"info": "Realizing that Lasswell is struggling with his own feelings interfering with the fulfillment of his duties as king, Akstar challenges him to a sparring session. Determined to steer him in the right direction, Akstar bestows upon him a new skill of his own creation—the guiding mirror of equity.",
"shop": "Guiding the Youth",
"music": "Split in Two",
"music_id": "400332"
}
},
"100000701": {
"name": "The Heartless Sage",
"compendium_id": 12,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [40, 100, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236730],
"7": [236731],
"10": [236732]
},
"restriction": {
"236732": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Sol, in his attempt to destroy all of Lapis using the Chaotic Darkness. His name, which means sun, was given to him by a friend many long years ago.",
"info": "Sol, in his attempt to destroy all of Lapis using the Chaotic Darkness. His name, which means sun, was given to him by a friend many long years ago.",
"shop": "The Heartless Sage",
"music": "A Climactic Clash",
"music_id": "400334"
}
},
"100000801": {
"name": "Wake-Up Coeurl",
"compendium_id": 13,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [50, 80, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [236733],
"7": [236734],
"10": [236735]
},
"restriction": {
"236735": [7103]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "A scene depicting Shinju atop Est the coeurl as they carry out a surprise attack on an Aldore military base. They run circles around the soldiers guarding the area, toying with them like balls of yarn. Meow, meow!",
"info": "A scene depicting Shinju atop Est the coeurl as they carry out a surprise attack on an Aldore military base. They run circles around the soldiers guarding the area, toying with them like balls of yarn. Meow, meow!",
"shop": "Wake-Up Coeurl",
"music": "Parallel Star",
"music_id": "400402"
}
},
"100000901": {
"name": "A Day in the Life of Physalis",
"compendium_id": 23,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 65, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [40, 65, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [237730],
"7": [237731],
"10": [237732]
},
"restriction": {
"237732": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Physalis, living in Grandshelt with Fina. Each day is full of smiles and laughter for the boisterous bunch.",
"info": "Physalis, living in Grandshelt with Fina. Each day is full of smiles and laughter for the boisterous bunch.",
"shop": "A Day in the Life of Physalis",
"music": "Chill Out",
"music_id": "400337"
}
},
"100001001": {
"name": "Beach Beauties",
"compendium_id": 16,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [50, 80, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [237073],
"7": [237074],
"10": [237075]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "A scene depicting Folka and Citra enjoying a luxurious vacation at the beach. Leaving their weapons aside, they are set on making the best out of their summer, even if this particular moment of peace and calm turns out to be brief.",
"info": "A scene depicting Folka and Citra enjoying a luxurious vacation at the beach. Leaving their weapons aside, they are set on making the best out of their summer, even if this particular moment of peace and calm turns out to be brief.",
"shop": "Beach Beauties",
"music": "Joie de Vivre",
"music_id": "400312"
}
},
"100001101": {
"name": "Madam and the Giant Bird, Bennu",
"compendium_id": 18,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 100, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [237416],
"7": [237417],
"10": [237418]
},
"restriction": {
"237418": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Madam Edel, squaring off against the giant bird Bennu within some ancient ruins. The atmosphere is tense as treasure seeker and treasure protector face each other.",
"info": "Madam Edel, squaring off against the giant bird Bennu within some ancient ruins. The atmosphere is tense as treasure seeker and treasure protector face each other.",
"shop": "Madam and the Giant Bird, Bennu",
"music": "Another Tale to Tell",
"music_id": "400328"
}
},
"100001301": {
"name": "アルティマニア1周年記念",
"compendium_id": 22,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [18, 55, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [18, 55, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"1": [237559],
"10": [237560]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "魔道図書館で召喚を行うサクラと、それを見守るアヤカ。他に類を見ないサクラの魔法に、ミシディアの魔道士たちも大喜び。",
"info": "ビジョンカードが経験値を獲得!",
"shop": "アルティマニア1周年記念",
"music": "♪To the Horizon",
"music_id": "400004"
}
},
"100001401": {
"name": "Morze's Soiree",
"compendium_id": 24,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [35, 50, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [35, 50, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [237733],
"7": [237734],
"10": [237735]
},
"restriction": {
"237735": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "The members of Morze's Soiree, all gathered together. Though they each spend their free time as they please, with but a single word from Madam, they transform into faithful subordinates ready to venture into the most treacherous of locales.",
"info": "The members of Morze's Soiree, all gathered together. Though they each spend their free time as they please, with but a single word from Madam, they transform into faithful subordinates ready to venture into the most treacherous of locales.",
"shop": "Morze's Soiree",
"music": "Unfettered Waltz",
"music_id": "400212"
}
},
"100001501": {
"name": "Too Cool for the Summer",
"compendium_id": 17,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [400, 800, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [40, 80, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [237250],
"7": [237251],
"10": [237252]
},
"restriction": {
"237252": [7103]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Fina and Daisy playing at the beach. Enjoying themselves amidst the sand and sea allows them to forget the hardship of battle. This vision is a glimpse into a moment of peace the two may someday find.",
"info": "Fina and Daisy playing at the beach. Enjoying themselves amidst the sand and sea allows them to forget the hardship of battle. This vision is a glimpse into a moment of peace the two may someday find.",
"shop": "Too Cool for the Summer",
"music": "Walkabout",
"music_id": "400308"
}
},
"100001601": {
"name": "One Last Battle",
"compendium_id": 28,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 60, 0, 0],
"DEF": [20, 30, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238243],
"7": [238244],
"10": [238245]
},
"restriction": {
"238245": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "With Aldore and Hess at war, Raegen and Rowen face each other on the battlefield. Raegen proposes to seal Rowen, as one of Hess's Eight Sages, within a crystal in order to bring an end to the conflict. Trusting his friend, Rowen places the future in Raegen's hands.",
"info": "With Aldore and Hess at war, Raegen and Rowen face each other on the battlefield. Raegen proposes to seal Rowen, as one of Hess's Eight Sages, within a crystal in order to bring an end to the conflict. Trusting his friend, Rowen places the future in Raegen's hands.",
"shop": "One Last Battle",
"music": "Sacred Ground",
"music_id": "400319"
}
},
"100001701": {
"name": "5th Anniversary Celebration Preparations",
"compendium_id": 30,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [5, 55, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [5, 55, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [915323],
"7": [],
"10": [915324]
},
"restriction": {
"238572": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rain and Fina have gathered to celebrate FFBE's 5th anniversary in Grandshelt! Together with their friends, they march in single file toward their destination, proudly holding a celebratory banner emblazoned with the number 5. They're almost at the venue!",
"info": "Rain and Fina have gathered to celebrate FFBE's 5th anniversary in Grandshelt! Together with their friends, they march in single file toward their destination, proudly holding a celebratory banner emblazoned with the number 5. They're almost at the venue!",
"shop": "5th Anniversary Celebration Preparations",
"music": "A Little Chat",
"music_id": "400112"
}
},
"100001801": {
"name": "Festive Preparations - Team Lasswell",
"compendium_id": 31,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [100, 200, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 90, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238573],
"7": [238574],
"10": [238575]
},
"restriction": null,
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Lasswell and Raegen have gathered in Grandshelt to ring in the New Year. Father and son are hard at work making flags with Citra as fireworks light up the sky above. They're pouring their hearts into every single stitch.",
"info": "Lasswell and Raegen have gathered in Grandshelt to ring in the New Year. Father and son are hard at work making flags with Citra as fireworks light up the sky above. They're pouring their hearts into every single stitch.",
"shop": "Festive Preparations - Team Lasswell",
"music": "Another Tale to Tell",
"music_id": "400328"
}
},
"100001901": {
"name": "Happy Anniversary! 5 Years with FFBE",
"compendium_id": 32,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [30, 70, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238576],
"7": [238577],
"10": [238578]
},
"restriction": {
"238578": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Charlotte and Physalis have gathered in Grandshelt's central plaza. At Charlotte's command, Physalis shoots the gift box the two brought with them, sending splendid decorations flying out. Thanks for everything!",
"info": "Charlotte and Physalis have gathered in Grandshelt's central plaza. At Charlotte's command, Physalis shoots the gift box the two brought with them, sending splendid decorations flying out. Thanks for everything!",
"shop": "Happy Anniversary! 5 Years with FFBE",
"music": "Final Fantasy",
"music_id": "400002"
}
},
"100002001": {
"name": "Festive Preparations - Team Sages",
"compendium_id": 34,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [100, 200, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [40, 90, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238850],
"7": [238851],
"10": [238852]
},
"restriction": {
"238852": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Dark Fina and Sol have gathered in Grandshelt to ring in the New Year. While Lid and Jake are busy decorating the roofs of the slums, Dark Fina and Sol blow up balloons below them with a young girl. These balloons are infused with a special magic, so they won't pop even after the festivities are over!",
"info": "Dark Fina and Sol have gathered in Grandshelt to ring in the New Year. While Lid and Jake are busy decorating the roofs of the slums, Dark Fina and Sol blow up balloons below them with a young girl. These balloons are infused with a special magic, so they won't pop even after the festivities are over!",
"shop": "Festive Preparations - Team Sages",
"music": "A Little Chat",
"music_id": "400112"
}
},
"100002101": {
"name": "Festive Preparations - Team Akstar",
"compendium_id": 35,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 90, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238853],
"7": [238854],
"10": [238855]
},
"restriction": {
"238855": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Akstar and Cleome have gathered in Grandshelt to ring in the New Year. In front of the brilliantly decorated Colosseum, Cleome ties an adorable bow on a present with Rinora's help. The bow's every loop and knot is imbued with the special bond shared by teacher and student!",
"info": "Akstar and Cleome have gathered in Grandshelt to ring in the New Year. In front of the brilliantly decorated Colosseum, Cleome ties an adorable bow on a present with Rinora's help. The bow's every loop and knot is imbued with the special bond shared by teacher and student!",
"shop": "Festive Preparations - Team Akstar",
"music": "Unfettered Waltz",
"music_id": "400212"
}
},
"100002201": {
"name": "The Heir to Purple Lightning",
"compendium_id": 27,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 65, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [40, 65, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238240],
"7": [238241],
"10": [238242]
},
"restriction": {
"238242": [7102]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Lasswell, receiving Purple Lightning from Raegen in his youth. The blade was a perfect fit for a boy who refused to give up on his dream of growing stronger than anyone else, regardless of what natural talent might dictate. The young boy soon came to treasure it as a symbol of the bonds he shares with his father and his dear friend.",
"info": "Lasswell, receiving Purple Lightning from Raegen in his youth. The blade was a perfect fit for a boy who refused to give up on his dream of growing stronger than anyone else, regardless of what natural talent might dictate. The young boy soon came to treasure it as a symbol of the bonds he shares with his father and his dear friend.",
"shop": "The Heir to Purple Lightning",
"music": "Great Voyage",
"music_id": "400105"
}
},
"100002301": {
"name": "Thanks for Everything!",
"compendium_id": 36,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [45, 80, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [45, 80, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [914724],
"7": [914725],
"10": [914726]
},
"restriction": {
"914726": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rain and the others have come leaping out of the crystals to ring in the New Year with everyone! Here's to another amazing year!",
"info": "Rain and the others have come leaping out of the crystals to ring in the New Year with everyone! Here's to another amazing year!",
"shop": "Thanks for Everything!",
"music": "Victory's Fanfare",
"music_id": "400009"
}
},
"100002401": {
"name": "No Matter the Cost",
"compendium_id": 33,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 60, 0, 0],
"DEF": [20, 30, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [238800],
"7": [238801],
"10": [238802, 230407]
},
"restriction": {
"238802": [7216],
"230407": [7601]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Rizer fights against enemy forces to defend his homeland. He bravely leads his army into the battle for control of the crystals and wields his blade to protect his beloved Grandshelt. It is this unwavering love for his country that serves as Rizer's true weapon.",
"info": "Rizer fights against enemy forces to defend his homeland. He bravely leads his army into the battle for control of the crystals and wields his blade to protect his beloved Grandshelt. It is this unwavering love for his country that serves as Rizer's true weapon.",
"shop": "No Matter the Cost",
"music": "DUEL!!",
"music_id": "400005"
}
},
"100002501": {
"name": "Friends from Today!",
"compendium_id": 38,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 100, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [239180],
"7": [239181],
"10": [239182]
},
"restriction": {
"239182": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Mazurka approaches Fina and Daisy, suggesting that they all get along. She hopes to someday get close enough that the three of them can even talk about their crushes together.",
"info": "Mazurka approaches Fina and Daisy, suggesting that they all get along. She hopes to someday get close enough that the three of them can even talk about their crushes together.",
"shop": "Friends from Today!",
"music": "Peaceful Village",
"music_id": "400201"
}
},
"100002601": {
"name": "Face My Full Power!",
"compendium_id": 42,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [0, 0, 0, 0],
"DEF": [0, 0, 0, 0],
"MAG": [40, 100, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [239600],
"7": [239601],
"10": [239602]
},
"restriction": {
"239602": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Melo faces enemies to protect his allies. Instead of calling it a pain and running away, he uses his full power to make a clean sweep of the monsters.",
"info": "Melo faces enemies to protect his allies. Instead of calling it a pain and running away, he uses his full power to make a clean sweep of the monsters.",
"shop": "Face My Full Power!",
"music": "Survivor Syndrome",
"music_id": "400351"
}
},
"100002701": {
"name": "The Dragon's Seal",
"compendium_id": 39,
"compendium_shown": true,
"rarity": 1,
"game_id": 11001,
"job_id": 0,
"unit_type": 0,
"stats": {
"HP": [0, 0, 0, 0],
"MP": [0, 0, 0, 0],
"ATK": [40, 60, 0, 0],
"DEF": [20, 30, 0, 0],
"MAG": [0, 0, 0, 0],
"SPR": [0, 0, 0, 0],
"element_resist": null,
"status_resist": null
},
"skills": {
"4": [239183],
"7": [239184],
"10": [239185]
},
"restriction": {
"239185": [7216]
},
"max_level": 10,
"exp_pattern": 110,
"stat_pattern": 100,
"merge_exp": 400,
"merge_stats": [0, 0, 0, 0, 0, 0],
"details": {
"desc": "Duke faces the dragon that was released from the seal. He joins forces with trustworthy friends from his home village, and they manage to safely reseal the dragon. In its place, they find the spear said to have been wielded by Ryunan, the first dragon sealer.",
"info": "Duke faces the dragon that was released from the seal. He joins forces with trustworthy friends from his home village, and they manage to safely reseal the dragon. In its place, they find the spear said to have been wielded by Ryunan, the first dragon sealer.",
"shop": "The Dragon's Seal",
"music": "Supreme Mission",
"music_id": "400320"
}
},
"100002801": {
"name": "Entrusted for the Future",