-
Notifications
You must be signed in to change notification settings - Fork 15
/
summons.json
executable file
·1932 lines (1932 loc) · 117 KB
/
summons.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
{
"1": {
"names": ["Siren", "塞壬", "세이렌", "Sirène", "Sirene", "Sirena", "Siren", "Siren\u001a"],
"image": "beast11.png",
"icon": "beast_thum11.png",
"skill": {
"10101": {
"effects": [
["Magic* water damage (60x, EVO MAG) to all enemies"],
["Inflict Sleep (50%) on all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 6000]], [2, 1, 6, [0, 0, 50, 0, 0, 0, 0, 0, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[170]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Lunatic Voice", "狂迷之聲", "광기의 노래", "Voix ensorcelante", "Wahnstimme", "Voz lunática", "Nyanyian Hipnotis", "เสียง\u001aอัน\u001aบ้าคลั่ง\u001a"],
"desc": ["Deal water damage and put all enemies to sleep", "對全體敵人發動水屬性攻擊和睡眠效果", "적 전체에 물속성 피해와 수면 부여", "Dégâts d'eau sur tous les ennemis et les endort", "Wasserschaden und alle Feinde einschläfern", "Inflige daño de agua y duerme a todos los enemigos", "Memberikan damage air dan status sleep pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aน้ำ\u001aและ\u001aติด\u001aสถานะ\u001a \u001asleep\u001a \u001aให้\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10102": {
"effects": [
["Magic* water damage (120x, EVO MAG) to all enemies"],
["Inflict Sleep (60%) on all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 12000]], [2, 1, 6, [0, 0, 60, 0, 0, 0, 0, 0, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[170]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Lunatic Voice", "狂迷之聲", "광기의 노래", "Voix ensorcelante", "Wahnstimme", "Voz lunática", "Nyanyian Hipnotis", "เสียง\u001aอัน\u001aบ้าคลั่ง\u001a"],
"desc": ["Deal water damage and put all enemies to sleep", "對全體敵人發動水屬性攻擊和睡眠效果", "적 전체에 물속성 피해와 수면 부여", "Dégâts d'eau sur tous les ennemis et les endort", "Wasserschaden und alle Feinde einschläfern", "Inflige daño de agua y duerme a todos los enemigos", "Memberikan damage air dan status sleep pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aน้ำ\u001aและ\u001aติด\u001aสถานะ\u001a \u001asleep\u001a \u001aให้\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10103": {
"effects": [
["Magic* water damage (210x, EVO MAG) to all enemies"],
["Inflict Sleep (70%) on all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 21000]], [2, 1, 6, [0, 0, 70, 0, 0, 0, 0, 0, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[170]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Lunatic Voice", "狂迷之聲", "광기의 노래", "Voix ensorcelante", "Wahnstimme", "Voz lunática", "Nyanyian Hipnotis", "เสียง\u001aอัน\u001aบ้าคลั่ง\u001a"],
"desc": ["Deal water damage and put all enemies to sleep", "對全體敵人發動水屬性攻擊和睡眠效果", "적 전체에 물속성 피해와 수면 부여", "Dégâts d'eau sur tous les ennemis et les endort", "Wasserschaden und alle Feinde einschläfern", "Inflige daño de agua y duerme a todos los enemigos", "Memberikan damage air dan status sleep pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aน้ำ\u001aและ\u001aติด\u001aสถานะ\u001a \u001asleep\u001a \u001aให้\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Blue": 1.5
},
"entries": [
{
"stats": {
"HP": [1500, 2000],
"MP": [1800, 2500],
"ATK": [1000, 1300],
"DEF": [1200, 1500],
"MAG": [1500, 2500],
"SPR": [1500, 2500]
},
"element_resist": [0, 0, -50, 50, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 3]
},
{
"stats": {
"HP": [2500, 3000],
"MP": [2700, 3400],
"ATK": [1500, 1800],
"DEF": [1600, 1900],
"MAG": [2600, 3600],
"SPR": [2600, 3600]
},
"element_resist": [0, 0, -50, 50, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]
},
{
"stats": {
"HP": [4500, 6000],
"MP": [5400, 6800],
"ATK": [3000, 5000],
"DEF": [3600, 5400],
"MAG": [4500, 7200],
"SPR": [4500, 7200]
},
"element_resist": [0, 0, -50, 50, 0, 0, 0, 0],
"status_resist": [0, 0, 100, 0, 0, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 7, 8, 7, 8, 7, 8, 7, 8, 8, 7, 8, 8, 7, 8, 8, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 8, 8, 9, 8, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9]
}
]
},
"2": {
"names": ["Ifrit", "伊弗利特", "이프리트", "Ifrit", "Ifrit", "Ifrit", "Ifrit", "Ifrit\u001a"],
"image": "beast21.png",
"icon": "beast_thum21.png",
"skill": {
"10201": {
"effects": [
["Physical* fire damage (70x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 7000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Hellfire", "地獄火焰", "지옥의 화염", "Flammes de l'enfer", "Inferno", "Fuego infernal", "Kobaran Api Neraka", "เพลิง\u001aแห่ง\u001aนรก\u001a"],
"desc": ["Deal fire damage to all enemies", "對全體敵人發動火屬性攻擊", "적 전체에 불속성 피해", "Dégâts de feu sur tous les ennemis", "Feuerschaden, alle Ziele", "Inflige daño de fuego a todos los enemigos", "Memberikan damage api pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aไฟ\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10202": {
"effects": [
["Physical* fire damage (140x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 14000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Hellfire", "地獄火焰", "지옥의 화염", "Flammes de l'enfer", "Inferno", "Fuego infernal", "Kobaran Api Neraka", "เพลิง\u001aแห่ง\u001aนรก\u001a"],
"desc": ["Deal fire damage to all enemies", "對全體敵人發動火屬性攻擊", "적 전체에 불속성 피해", "Dégâts de feu sur tous les ennemis", "Feuerschaden, alle Ziele", "Inflige daño de fuego a todos los enemigos", "Memberikan damage api pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aไฟ\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10203": {
"effects": [
["Physical* fire damage (235x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 23500]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Hellfire", "地獄火焰", "지옥의 화염", "Flammes de l'enfer", "Inferno", "Fuego infernal", "Kobaran Api Neraka", "เพลิง\u001aแห่ง\u001aนรก\u001a"],
"desc": ["Deal fire damage to all enemies", "對全體敵人發動火屬性攻擊", "적 전체에 불속성 피해", "Dégâts de feu sur tous les ennemis", "Feuerschaden, alle Ziele", "Inflige daño de fuego a todos los enemigos", "Memberikan damage api pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aไฟ\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Red": 1.5
},
"entries": [
{
"stats": {
"HP": [2000, 3000],
"MP": [1500, 1800],
"ATK": [2500, 3700],
"DEF": [1600, 2100],
"MAG": [1200, 1600],
"SPR": [1200, 1600]
},
"element_resist": [50, -50, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 10, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 4, 3, 4, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 3, 3, 4, 3, 4, 3, 4]
},
{
"stats": {
"HP": [3500, 4500],
"MP": [1900, 2200],
"ATK": [3900, 5100],
"DEF": [2300, 2800],
"MAG": [1700, 2100],
"SPR": [1700, 2100]
},
"element_resist": [50, -50, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 10, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7]
},
{
"stats": {
"HP": [4900, 8400],
"MP": [2700, 5700],
"ATK": [5500, 8800],
"DEF": [3200, 6300],
"MAG": [2500, 4800],
"SPR": [2500, 4800]
},
"element_resist": [50, -50, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 100, 0, 0, 0, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9]
}
]
},
"3": {
"names": ["Shiva", "濕婆", "시바", "Shiva", "Shiva", "Shiva", "Shiva", "Shiva\u001a"],
"image": "beast31.png",
"icon": "beast_thum31.png",
"skill": {
"10301": {
"effects": [
["Magic* ice damage (70x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 7000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[80]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Diamond Dust", "鑽石星塵", "다이아몬드 더스트", "Poussière de diamant", "Diamantstaub", "Polvo de diamantes", "Diamond Dust", "ประกาย\u001aเกล็ด\u001aเพชร\u001a"],
"desc": ["Deal ice damage to all enemies", "對全體敵人發動冰屬性攻擊", "적 전체에 얼음속성 피해", "Dégâts de glace sur tous les ennemis", "Eisschaden, alle Ziele", "Inflige daño de frío a todos los enemigos", "Memberikan damage es pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aน้ำแข็ง\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10302": {
"effects": [
["Magic* ice damage (140x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 14000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Diamond Dust", "鑽石星塵", "다이아몬드 더스트", "Poussière de diamant", "Diamantstaub", "Polvo de diamantes", "Diamond Dust", "ประกาย\u001aเกล็ด\u001aเพชร\u001a"],
"desc": ["Deal ice damage to all enemies", "對全體敵人發動冰屬性攻擊", "적 전체에 얼음속성 피해", "Dégâts de glace sur tous les ennemis", "Eisschaden, alle Ziele", "Inflige daño de frío a todos los enemigos", "Memberikan damage es pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aน้ำแข็ง\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10303": {
"effects": [
["Magic* ice damage (190x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 19000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Diamond Dust", "鑽石星塵", "다이아몬드 더스트", "Poussière de diamant", "Diamantstaub", "Polvo de diamantes", "Diamond Dust", "ประกาย\u001aเกล็ด\u001aเพชร\u001a"],
"desc": ["Deal ice damage to all enemies", "對全體敵人發動冰屬性攻擊", "적 전체에 얼음속성 피해", "Dégâts de glace sur tous les ennemis", "Eisschaden, alle Ziele", "Inflige daño de frío a todos los enemigos", "Memberikan damage es pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aน้ำแข็ง\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Violet": 1.5
},
"entries": [
{
"stats": {
"HP": [1800, 2300],
"MP": [2700, 4200],
"ATK": [1200, 1500],
"DEF": [1400, 1800],
"MAG": [2300, 3800],
"SPR": [2300, 3800]
},
"element_resist": [-50, 50, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 5, 4, 5, 4, 4, 4, 5, 4, 5, 4, 5, 4, 5, 4, 5, 4, 5, 4, 5, 4, 5, 4, 4, 4, 5, 4, 5, 4, 5]
},
{
"stats": {
"HP": [2800, 3300],
"MP": [4400, 5900],
"ATK": [1800, 2100],
"DEF": [1900, 2300],
"MAG": [3900, 5400],
"SPR": [3900, 5400]
},
"element_resist": [-50, 50, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
},
{
"stats": {
"HP": [3700, 7200],
"MP": [6300, 8300],
"ATK": [2400, 5000],
"DEF": [2600, 5700],
"MAG": [5700, 7900],
"SPR": [5700, 7900]
},
"element_resist": [-50, 50, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 100, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10]
}
]
},
"4": {
"names": ["Carbuncle", "卡邦庫爾", "카벙클", "Carbuncle", "Karfunkel", "Rubí", "Carbuncle", "Carbuncle\u001a"],
"image": "beast71.png",
"icon": "beast_thum71.png",
"skill": {
"10401": {
"effects": [
["Reflect 1 spell(s) for 2 turns to all allies"]
],
"effects_raw": [[2, 2, 86, [100, 1, 2]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0, 0, 60]],
"strings": {
"name": ["Ruby Light", "紅寶石之光", "루비의 빛", "Éclat du rubis", "Rubinglanz", "Resplandor de rubí", "Cahaya Ruby", "แสง\u001aแห่ง\u001aทับทิม\u001a"],
"desc": ["Reflects magic cast on allies", "反射對全體隊員使用的魔法", "아군을 향한 마법 공격 반사", "Renvoie la magie envoyée sur les alliés", "Reflekiert auf Verbündete gerichtete Magie", "Refleja la magia dirigida a los aliados", "Memantulkan kembali magic yang diterima semua teman", "สะท้อน\u001aเวทย์\u001aที่\u001aถู\u001aกร่าย\u001aใส่\u001aสมาชิก\u001aใน\u001aทีม\u001aทุกราย\u001a"]
}
},
"10402": {
"effects": [
["Reflect 1 spell(s) for 3 turns to all allies"]
],
"effects_raw": [[2, 2, 86, [100, 1, 3]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0, 0, 60]],
"strings": {
"name": ["Ruby Light", "紅寶石之光", "루비의 빛", "Éclat du rubis", "Rubinglanz", "Resplandor de rubí", "Cahaya Ruby", "แสง\u001aแห่ง\u001aทับทิม\u001a"],
"desc": ["Reflects magic cast on allies", "反射對全體隊員使用的魔法", "아군을 향한 마법 공격 반사", "Renvoie la magie envoyée sur les alliés", "Reflekiert auf Verbündete gerichtete Magie", "Refleja la magia dirigida a los aliados", "Memantulkan kembali magic yang diterima semua teman", "สะท้อน\u001aเวทย์\u001aที่\u001aถู\u001aกร่าย\u001aใส่\u001aสมาชิก\u001aใน\u001aทีม\u001aทุกราย\u001a"]
}
},
"10403": {
"effects": [
["Reflect 1 spell(s) for 4 turns to all allies"]
],
"effects_raw": [[2, 2, 86, [100, 1, 4]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0, 0, 0, 60]],
"strings": {
"name": ["Ruby Light", "紅寶石之光", "루비의 빛", "Éclat du rubis", "Rubinglanz", "Resplandor de rubí", "Cahaya Ruby", "แสง\u001aแห่ง\u001aทับทิม\u001a"],
"desc": ["Reflects magic cast on allies", "反射對全體隊員使用的魔法", "아군을 향한 마법 공격 반사", "Renvoie la magie envoyée sur les alliés", "Reflekiert auf Verbündete gerichtete Magie", "Refleja la magia dirigida a los aliados", "Memantulkan kembali magic yang diterima semua teman", "สะท้อน\u001aเวทย์\u001aที่\u001aถู\u001aกร่าย\u001aใส่\u001aสมาชิก\u001aใน\u001aทีม\u001aทุกราย\u001a"]
}
}
},
"color": {
"White": 1.5
},
"entries": [
{
"stats": {
"HP": [1600, 2200],
"MP": [2500, 4000],
"ATK": [800, 1200],
"DEF": [1800, 2400],
"MAG": [1500, 2800],
"SPR": [2500, 4000]
},
"element_resist": [0, 0, 0, 0, 0, 0, 50, -50],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [2600, 3200],
"MP": [4200, 5700],
"ATK": [1300, 1800],
"DEF": [2600, 3200],
"MAG": [3000, 4300],
"SPR": [4200, 6000]
},
"element_resist": [0, 0, 0, 0, 0, 0, 50, -50],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9]
},
{
"stats": {
"HP": [3600, 6400],
"MP": [6000, 8000],
"ATK": [1900, 3000],
"DEF": [3400, 8000],
"MAG": [4500, 5800],
"SPR": [6200, 8800]
},
"element_resist": [0, 0, 0, 0, 0, 0, 50, -50],
"status_resist": [0, 0, 0, 0, 0, 0, 100, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"5": {
"names": ["Diabolos", "迪亞波羅斯", "디아볼로스", "Diabolos", "Diabolos", "Diablo", "Diabolos", "Diabolos\u001a"],
"image": "beast51.png",
"icon": "beast_thum51.png",
"skill": {
"10501": {
"effects": [
["Magic* dark damage (80x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 8000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Dark Messenger", "黑暗使者", "어둠에서 온 사자", "Héraut ténébreux", "Dunkler Bote", "Emisario de la noche", "Utusan Kegelapan", "ผู้ส่งสาร\u001aแห่ง\u001aความมืด\u001a \u001a"],
"desc": ["Deal dark damage to all enemies", "對全體敵人發動暗屬性攻擊", "적 전체에 어둠속성 피해", "Dégâts de ténèbres sur tous les ennemis", "Dunkelschaden, alle Ziele", "Daño oscuro a todos los enemigos", "Memberikan damage kegelapan pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aมืด\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10502": {
"effects": [
["Magic* dark damage (170x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 17000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[190]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Dark Messenger", "黑暗使者", "어둠에서 온 사자", "Héraut ténébreux", "Dunkler Bote", "Emisario de la noche", "Utusan Kegelapan", "ผู้ส่งสาร\u001aแห่ง\u001aความมืด\u001a \u001a"],
"desc": ["Deal dark damage to all enemies", "對全體敵人發動暗屬性攻擊", "적 전체에 어둠속성 피해", "Dégâts de ténèbres sur tous les ennemis", "Dunkelschaden, alle Ziele", "Daño oscuro a todos los enemigos", "Memberikan damage kegelapan pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aมืด\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10503": {
"effects": [
["Magic* dark damage (300x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 30000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[400]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Dark Messenger", "黑暗使者", "어둠에서 온 사자", "Héraut ténébreux", "Dunkler Bote", "Emisario de la noche", "Utusan Kegelapan", "ผู้ส่งสาร\u001aแห่ง\u001aความมืด\u001a \u001a"],
"desc": ["Deal dark damage to all enemies", "對全體敵人發動暗屬性攻擊", "적 전체에 어둠속성 피해", "Dégâts de ténèbres sur tous les ennemis", "Dunkelschaden, alle Ziele", "Daño oscuro a todos los enemigos", "Memberikan damage kegelapan pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aมืด\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Black": 1.5
},
"entries": [
{
"stats": {
"HP": [2000, 2800],
"MP": [2800, 4300],
"ATK": [1000, 1200],
"DEF": [1200, 1700],
"MAG": [2200, 3700],
"SPR": [1800, 2300]
},
"element_resist": [0, 0, 0, 0, 0, 0, -50, 50],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [3500, 4300],
"MP": [4500, 6000],
"ATK": [1300, 1500],
"DEF": [1800, 2300],
"MAG": [3800, 5300],
"SPR": [2600, 3100]
},
"element_resist": [0, 0, 0, 0, 0, 0, -50, 50],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
},
{
"stats": {
"HP": [5000, 7800],
"MP": [6200, 8500],
"ATK": [1600, 3700],
"DEF": [2400, 5800],
"MAG": [5400, 7200],
"SPR": [3400, 5000]
},
"element_resist": [0, 0, 0, 0, 0, 0, -50, 50],
"status_resist": [100, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"6": {
"names": ["Golem", "巨像兵", "골렘", "Golem", "Golem", "Gólem", "Golem", "Golem\u001a"],
"image": "beast61.png",
"icon": "beast_thum61.png",
"skill": {
"10601": {
"effects": [
["Reduce damage taken from physical attacks taken by 50% to all allies for one turn"]
],
"effects_raw": [[2, 2, 18, [50, 1, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Earthen Wall", "大地之壁", "대지의 장벽", "Muraille de terre", "Irdenwall", "Pared de tierra", "Dinding Lapisan Tanah", "กำแพง\u001aปฐพี\u001a"],
"desc": ["Decrease physical damage taken for all allies", "減少對全體隊員的物理傷害", "아군 전체가 받는 물리 피해량 감소", "Réduit les dégâts physiques subis par les alliés", "Physischen Schaden bei allen Verbündeten verringern", "Reduce el daño físico que reciben los aliados", "Mengurangi damage fisik yang diterima semua teman", "ลด\u001aความเสียหาย\u001aทางกายภาพ\u001aที่\u001aสมาชิก\u001aใน\u001aทีม\u001aทุกราย\u001aได้รับ\u001a"]
}
},
"10602": {
"effects": [
["Reduce damage taken from physical attacks taken by 60% to all allies for one turn"]
],
"effects_raw": [[2, 2, 18, [60, 1, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Earthen Wall", "大地之壁", "대지의 장벽", "Muraille de terre", "Irdenwall", "Pared de tierra", "Dinding Lapisan Tanah", "กำแพง\u001aปฐพี\u001a"],
"desc": ["Decrease physical damage taken for all allies", "減少對全體隊員的物理傷害", "아군 전체가 받는 물리 피해량 감소", "Réduit les dégâts physiques subis par les alliés", "Physischen Schaden bei allen Verbündeten verringern", "Reduce el daño físico que reciben los aliados", "Mengurangi damage fisik yang diterima semua teman", "ลด\u001aความเสียหาย\u001aทางกายภาพ\u001aที่\u001aสมาชิก\u001aใน\u001aทีม\u001aทุกราย\u001aได้รับ\u001a"]
}
},
"10603": {
"effects": [
["Reduce damage taken from physical attacks taken by 70% to all allies for one turn"]
],
"effects_raw": [[2, 2, 18, [70, 1, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[30]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Earthen Wall", "大地之壁", "대지의 장벽", "Muraille de terre", "Irdenwall", "Pared de tierra", "Dinding Lapisan Tanah", "กำแพง\u001aปฐพี\u001a"],
"desc": ["Decrease physical damage taken for all allies", "減少對全體隊員的物理傷害", "아군 전체가 받는 물리 피해량 감소", "Réduit les dégâts physiques subis par les alliés", "Physischen Schaden bei allen Verbündeten verringern", "Reduce el daño físico que reciben los aliados", "Mengurangi damage fisik yang diterima semua teman", "ลด\u001aความเสียหาย\u001aทางกายภาพ\u001aที่\u001aสมาชิก\u001aใน\u001aทีม\u001aทุกราย\u001aได้รับ\u001a"]
}
}
},
"color": {
"Orange": 1.5
},
"entries": [
{
"stats": {
"HP": [2000, 3500],
"MP": [2700, 3400],
"ATK": [2000, 2500],
"DEF": [2000, 3000],
"MAG": [1100, 1300],
"SPR": [1100, 1300]
},
"element_resist": [0, 0, 0, 0, -50, 50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [4000, 5500],
"MP": [3600, 4300],
"ATK": [2700, 3200],
"DEF": [3500, 4500],
"MAG": [1400, 1600],
"SPR": [1400, 1600]
},
"element_resist": [0, 0, 0, 0, -50, 50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
},
{
"stats": {
"HP": [6000, 9000],
"MP": [4500, 7000],
"ATK": [3400, 6200],
"DEF": [5000, 8800],
"MAG": [1700, 3900],
"SPR": [1700, 3900]
},
"element_resist": [0, 0, 0, 0, -50, 50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 100, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"7": {
"names": ["Ramuh", "拉姆", "라무", "Ramuh", "Ramuh", "Lamú", "Ramuh", "Ramuh\u001a"],
"image": "beast41.png",
"icon": "beast_thum41.png",
"skill": {
"10701": {
"effects": [
["Magic* lightning damage (70x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 7000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[140]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Judgment Bolt", "制裁之雷", "심판의 벼락", "Foudre du jugement", "Ionenschlag", "Rayos de justicia", "Petir Penghakiman", "สายฟ้า\u001aพิพากษา\u001a"],
"desc": ["Deal lightning damage to all enemies", "對全體敵人發動雷屬性攻擊", "적 전체에 번개속성 피해", "Dégâts de foudre sur tous les ennemis", "Blitzschaden, alle Ziele", "Inflige daño de rayo a todos los enemigos", "Memberikan damage petir pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aสายฟ้า\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10702": {
"effects": [
["Magic* lightning damage (140x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 14000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Judgment Bolt", "制裁之雷", "심판의 벼락", "Foudre du jugement", "Ionenschlag", "Rayos de justicia", "Petir Penghakiman", "สายฟ้า\u001aพิพากษา\u001a"],
"desc": ["Deal lightning damage to all enemies", "對全體敵人發動雷屬性攻擊", "적 전체에 번개속성 피해", "Dégâts de foudre sur tous les ennemis", "Blitzschaden, alle Ziele", "Inflige daño de rayo a todos los enemigos", "Memberikan damage petir pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aสายฟ้า\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10703": {
"effects": [
["Magic* lightning damage (210x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 21000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[110]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Judgment Bolt", "制裁之雷", "심판의 벼락", "Foudre du jugement", "Ionenschlag", "Rayos de justicia", "Petir Penghakiman", "สายฟ้า\u001aพิพากษา\u001a"],
"desc": ["Deal lightning damage to all enemies", "對全體敵人發動雷屬性攻擊", "적 전체에 번개속성 피해", "Dégâts de foudre sur tous les ennemis", "Blitzschaden, alle Ziele", "Inflige daño de rayo a todos los enemigos", "Memberikan damage petir pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aสายฟ้า\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Yellow": 1.5
},
"entries": [
{
"stats": {
"HP": [1400, 1800],
"MP": [2900, 4400],
"ATK": [700, 1000],
"DEF": [300, 600],
"MAG": [2600, 4100],
"SPR": [1000, 2500]
},
"element_resist": [0, 0, 50, -50, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [2400, 2800],
"MP": [4700, 6200],
"ATK": [1300, 1600],
"DEF": [800, 1100],
"MAG": [4400, 5900],
"SPR": [3000, 4500]
},
"element_resist": [0, 0, 50, -50, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
},
{
"stats": {
"HP": [3400, 5200],
"MP": [6500, 9000],
"ATK": [1800, 4800],
"DEF": [1300, 4000],
"MAG": [6200, 8600],
"SPR": [5000, 7400]
},
"element_resist": [0, 0, 50, -50, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 100, 0, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"8": {
"names": ["Titan", "泰坦", "타이탄", "Titan", "Titan", "Titán", "Titan", "Titan\u001a"],
"image": "beast81.png",
"icon": "beast_thum81.png",
"skill": {
"10801": {
"effects": [
["Physical* earth damage (80x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 8000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[170]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Gaia's Wrath", "大地之怒", "대지의 분노", "Colère de Gaïa", "Gaias Wut", "Ira de la tierra", "Kemurkaan Gaia", "พิโรธ\u001aแห่ง\u001aปฐพี\u001a"],
"desc": ["Deal earth damage to all enemies", "對全體敵人發動土屬性攻擊", "적 전체에 땅속성 피해", "Dégâts de terre sur tous ennemis", "Erdschaden, alle Gegner", "Inflige daño de tierra a todos los enemigos", "Memberikan damage tanah pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aดิน\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10802": {
"effects": [
["Physical* earth damage (170x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 17000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[170]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Gaia's Wrath", "大地之怒", "대지의 분노", "Colère de Gaïa", "Gaias Wut", "Ira de la tierra", "Kemurkaan Gaia", "พิโรธ\u001aแห่ง\u001aปฐพี\u001a"],
"desc": ["Deal earth damage to all enemies", "對全體敵人發動土屬性攻擊", "적 전체에 땅속성 피해", "Dégâts de terre sur tous les ennemis", "Erdschaden, alle Gegner", "Inflige daño de tierra a todos los enemigos", "Memberikan damage tanah pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aดิน\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10803": {
"effects": [
["Physical* earth damage (220x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 22000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[120]],
"effect_frames": [[0, 0]],
"strings": {
"name": ["Gaia's Wrath", "大地之怒", "대지의 분노", "Colère de Gaïa", "Gaias Wut", "Ira de la tierra", "Kemurkaan Gaia", "พิโรธ\u001aแห่ง\u001aปฐพี\u001a"],
"desc": ["Deal earth damage to all enemies", "對全體敵人發動土屬性攻擊", "적 전체에 땅속성 피해", "Dégâts de terre sur tous les ennemis", "Erdschaden, alle Gegner", "Inflige daño de tierra a todos los enemigos", "Memberikan damage tanah pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aดิน\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Orange": 1.5
},
"entries": [
{
"stats": {
"HP": [2300, 4000],
"MP": [1300, 1600],
"ATK": [2700, 3900],
"DEF": [1500, 2700],
"MAG": [1100, 1500],
"SPR": [2300, 2700]
},
"element_resist": [0, 0, 0, 0, -50, 50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [4400, 6000],
"MP": [1700, 2000],
"ATK": [4100, 5300],
"DEF": [2800, 4000],
"MAG": [1600, 1800],
"SPR": [2800, 3200]
},
"element_resist": [0, 0, 0, 0, -50, 50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9]
},
{
"stats": {
"HP": [6600, 10000],
"MP": [2100, 4200],
"ATK": [5500, 8200],
"DEF": [4000, 7800],
"MAG": [1900, 4000],
"SPR": [3300, 5000]
},
"element_resist": [0, 0, 0, 0, -50, 50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 100],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"9": {
"names": ["Tetra Sylphid", "四方風精靈", "테트라 실피드", "Tétra-Sylphides", "Tetra Sylphid", "Tetra Sílfide", "Tetra Sylphid", "Tetra\u001a \u001aSylphid\u001a"],
"image": "beast91.png",
"icon": "beast_thum91.png",
"skill": {
"10901": {
"effects": [
["Magic* wind damage (90x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 9000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[150]],
"effect_frames": [[40, 40]],
"strings": {
"name": ["Heavenswind", "四天之風", "사천의 바람", "Vent céleste", "Himmelswind", "Viento celestial", "Embusan Angin Surgawi", "สายลม\u001aแห่ง\u001aสวรรค์\u001a"],
"desc": ["Deal wind damage to all enemies", "對全體敵人發動風屬性攻擊", "적 전체에 바람속성 피해", "Dégâts de vent sur tous les ennemis", "Windschaden, alle Gegner", "Inflige daño de viento a todos los enemigos", "Memberikan damage angin pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aลม\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10902": {
"effects": [
["Magic* wind damage (180x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 18000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[190]],
"effect_frames": [[40, 40]],
"strings": {
"name": ["Heavenswind", "四天之風", "사천의 바람", "Vent céleste", "Himmelswind", "Viento celestial", "Embusan Angin Surgawi", "สายลม\u001aแห่ง\u001aสวรรค์\u001a"],
"desc": ["Deal wind damage to all enemies", "對全體敵人發動風屬性攻擊", "적 전체에 바람속성 피해", "Dégâts de vent sur tous les ennemis", "Windschaden, alle Gegner", "Inflige daño de viento a todos los enemigos", "Memberikan damage angin pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aลม\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"10903": {
"effects": [
["Magic* wind damage (230x, EVO MAG) to all enemies"]
],
"effects_raw": [[2, 1, 80, [0, 0, 0, 0, 0, 1, 23000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[230]],
"effect_frames": [[40, 40]],
"strings": {
"name": ["Heavenswind", "四天之風", "사천의 바람", "Vent céleste", "Himmelswind", "Viento celestial", "Embusan Angin Surgawi", "สายลม\u001aแห่ง\u001aสวรรค์\u001a"],
"desc": ["Deal wind damage to all enemies", "對全體敵人發動風屬性攻擊", "적 전체에 바람속성 피해", "Dégâts de vent sur tous les ennemis", "Windschaden, alle Gegner", "Inflige daño de viento a todos los enemigos", "Memberikan damage angin pada semua musuh", "สร้าง\u001aความเสียหาย\u001aด้วย\u001aธาตุ\u001aลม\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": {
"Green": 1.5
},
"entries": [
{
"stats": {
"HP": [1800, 2600],
"MP": [2600, 3800],
"ATK": [1800, 2000],
"DEF": [1200, 1600],
"MAG": [2800, 4200],
"SPR": [2000, 2600]
},
"element_resist": [0, 0, 0, 0, 50, -50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [3000, 4000],
"MP": [4200, 5400],
"ATK": [2200, 2600],
"DEF": [1700, 2000],
"MAG": [4600, 6000],
"SPR": [2700, 3500]
},
"element_resist": [0, 0, 0, 0, 50, -50, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9]
},
{
"stats": {
"HP": [4400, 7000],
"MP": [5600, 7700],
"ATK": [2800, 5300],
"DEF": [2200, 5000],
"MAG": [6300, 8800],
"SPR": [3600, 6000]
},
"element_resist": [0, 0, 0, 0, 50, -50, 0, 0],
"status_resist": [0, 0, 100, 0, 0, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"10": {
"names": ["Odin", "奧汀", "오딘", "Odin", "Odin", "Odín", "Odin", "Odin\u001a"],
"image": "beast101.png",
"icon": "beast_thum101.png",
"skill": {
"11001": {
"effects": [
["Physical* damage (100x, EVO ATK) to all enemies"]
],
"effects_raw": [[2, 1, 79, [0, 0, 0, 0, 0, 0, 1, 10000]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[70]],
"effect_frames": [[0, 40]],
"strings": {
"name": ["Gungnir", "奧汀神槍", "궁니르", "Gungnir", "Gungnir", "Gungnir", "Gungnir", "หอก\u001a \u001aGungnir\u001a"],
"desc": ["Damage all enemies", "攻擊全體敵人", "적 전체에 피해", "Dégâts sur tous les ennemis", "Schaden, alle Gegner", "Inflige daño a todos los enemigos", "Memberikan damage pada semua musuh", "สร้าง\u001aความเสียหาย\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"11002": {
"effects": [
["Physical* damage (200x, EVO ATK) to all enemies", "Instant KO(50 %) to all enemies"]
],
"effects_raw": [[2, 1, 94, [20000, 50, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[70]],
"effect_frames": [[0]],
"strings": {
"name": ["Zantetsuken", "斬鐵劍", "참철검", "Zantetsuken", "Zantetsuken", "Sable justiciero", "Zantetsuken", "ดาบ\u001aสะบั้น\u001aโลหะ\u001a"],
"desc": ["Instantly KO or damage all enemies", "攻擊全體敵人或施加致死一擊效果", "적 전체에 피해 또는 즉사 부여", "Met instantanément KO ou dégâts sur tous les ennemis", "Vernichtet alle Gegner oder Schaden", "Inflige K.O. instantáneo o daño a todos los enemigos", "Menyebabkan K.O. seketika atau memberikan damage pada semua musuh", "KO\u001a \u001aศัตรู\u001aทุกราย\u001aในทันที\u001aหรือ\u001aสร้าง\u001aความเสียหาย\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
},
"11003": {
"effects": [
["Physical* damage (210x, EVO ATK) to all enemies", "Instant KO(60 %) to all enemies"]
],
"effects_raw": [[2, 1, 94, [21000, 60, 1]]],
"attack_count": [1],
"attack_damage": [[100]],
"attack_frames": [[70]],
"effect_frames": [[0]],
"strings": {
"name": ["Shin Zantetsuken", "真·斬鐵劍", "진·참철검", "Shin Zantetsuken", "Shin Zantetsuken", "Sable justiciero+", "Shin Zantetsuken", "ดาบ\u001aสะบั้น\u001aโลหะ\u001aที่\u001aแท้จริง\u001a"],
"desc": ["Instantly KO or damage all enemies", "攻擊全體敵人或施加致死一擊效果", "적 전체에 피해 또는 즉사 부여", "Met instantanément KO ou dégâts sur tous les ennemis", "Vernichtet alle Gegner oder Schaden", "Inflige K.O. instantáneo o daño a todos los enemigos", "Menyebabkan K.O. seketika atau memberikan damage pada semua musuh", "KO\u001a \u001aศัตรู\u001aทุกราย\u001aในทันที\u001aหรือ\u001aสร้าง\u001aความเสียหาย\u001aแก่\u001aศัตรู\u001aทุกราย\u001a"]
}
}
},
"color": null,
"entries": [
{
"stats": {
"HP": [2100, 3400],
"MP": [2000, 2900],
"ATK": [2700, 4200],
"DEF": [1700, 2900],
"MAG": [1100, 1500],
"SPR": [1300, 1700]
},
"element_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 30,
"stat_pattern": 1,
"cp_pattern": [0, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6]
},
{
"stats": {
"HP": [3700, 5000],
"MP": [3000, 3900],
"ATK": [4500, 6000],
"DEF": [3000, 4200],
"MAG": [1600, 2000],
"SPR": [1800, 2200]
},
"element_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"exp_pattern": 40,
"stat_pattern": 1,
"cp_pattern": [0, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9, 8, 9]
},
{
"stats": {
"HP": [5300, 8700],
"MP": [4000, 7500],
"ATK": [6300, 9200],
"DEF": [4300, 8200],
"MAG": [2100, 6600],
"SPR": [2300, 6800]
},
"element_resist": [0, 0, 0, 0, 0, 0, 0, 0],
"status_resist": [0, 0, 0, 0, 100, 0, 0, 0],
"exp_pattern": 50,
"stat_pattern": 1,
"cp_pattern": [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
}
]
},
"11": {
"names": ["Lakshmi", "吉祥天女", "락슈미", "Lakshmi", "Lakshmi", "Lakshmi", "Laksmi", "Lakshmi\u001a"],
"image": "beast111.png",
"icon": "beast_thum111.png",
"skill": {
"11101": {
"effects": [
["Restore 50% HP to all allies"]