-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoninfo.json
1930 lines (1930 loc) · 40.5 KB
/
moninfo.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
[
{
"star": 5,
"name": "夏日小憩(白皮肤)",
"spd_atk": 1600,
"tokens": "小白鱼 锦鲤",
"animation": 21,
"type": "5154011"
},
{
"star": 5,
"name": "冰雪蛮族(雷狱先锋·沃尔特皮肤)",
"spd_atk": 1500,
"tokens": "地龙",
"animation": 26,
"type": "5121011"
},
{
"star": 4,
"name": "飞鸟与鱼(珊德薇皮肤)",
"spd_atk": 1600,
"tokens": "白鸟",
"animation": 21,
"type": "4155011"
},
{
"star": 5,
"name": "女王假期(泰坦妮亚皮肤)",
"spd_atk": 1600,
"tokens": "大蝴蝶 泰坦尼亚 紫白菜",
"animation": 26,
"type": "5153011"
},
{
"star": 3,
"name": "圣诞精灵(MIO皮肤)",
"spd_atk": 1330,
"tokens": "MIO",
"animation": 26,
"type": "3010012"
},
{
"star": 4,
"name": "泳装女仆(冥土侍长·安普斯皮肤)",
"spd_atk": 1400,
"tokens": "女仆长",
"animation": 21,
"type": "4108011"
},
{
"star": 4,
"name": "沙滩蹄印(阿讷莫娜皮肤)",
"spd_atk": 1600,
"tokens": "小鹿",
"animation": 21,
"type": "4156011"
},
{
"star": 1,
"name": "绿色史莱姆",
"spd_atk": 1600,
"tokens": "绿史 绿姆姆",
"animation": 26,
"type": "1001010"
},
{
"star": 1,
"name": "蓝色史莱姆",
"spd_atk": 1733,
"tokens": "蓝史 蓝姆姆",
"animation": 21,
"type": "1001020"
},
{
"star": 1,
"name": "红色史莱姆",
"spd_atk": 1333,
"tokens": "红史 红姆姆",
"animation": 21,
"type": "1001030"
},
{
"star": 1,
"name": "黄色史莱姆",
"spd_atk": 1600,
"tokens": "黄史 黄姆姆",
"animation": 26,
"type": "1001040"
},
{
"star": 1,
"name": "幽灵史莱姆",
"spd_atk": 1733,
"tokens": "",
"animation": 26,
"type": "1001090"
},
{
"star": 1,
"name": "阳葵",
"spd_atk": 1600,
"tokens": "向日葵",
"animation": 21,
"type": "1002010"
},
{
"star": 1,
"name": "风仙炭玻玻",
"spd_atk": 1600,
"tokens": "风仙碳玻玻",
"animation": 26,
"type": "1003010"
},
{
"star": 1,
"name": "水猫呜拉喵",
"spd_atk": 1333,
"tokens": "水猫",
"animation": 21,
"type": "1005010"
},
{
"star": 1,
"name": "地鼠芙洛波",
"spd_atk": 1266,
"tokens": "",
"animation": 21,
"type": "1006010"
},
{
"star": 1,
"name": "风精NANO",
"spd_atk": 1266,
"tokens": "",
"animation": 26,
"type": "1007010"
},
{
"star": 1,
"name": "地鸟喳喳布林",
"spd_atk": 1333,
"tokens": "渣渣",
"animation": 26,
"type": "1008010"
},
{
"star": 1,
"name": "水鸟喳喳布林",
"spd_atk": 1330,
"tokens": "渣渣",
"animation": 26,
"type": "1008020"
},
{
"star": 1,
"name": "杜艮",
"spd_atk": 1999,
"tokens": "",
"animation": 21,
"type": "1009010"
},
{
"star": 1,
"name": "水藻杜吉芽",
"spd_atk": 1600,
"tokens": "水藻精",
"animation": 21,
"type": "1025010"
},
{
"star": 2,
"name": "大根子",
"spd_atk": 1600,
"tokens": "萝卜精",
"animation": 26,
"type": "1030010"
},
{
"star": 1,
"name": "柯萝",
"spd_atk": 1600,
"tokens": "考拉",
"animation": 26,
"type": "1031010"
},
{
"star": 1,
"name": "迷迷可",
"spd_atk": 1600,
"tokens": "宝箱怪",
"animation": 26,
"type": "1038010"
},
{
"star": 1,
"name": "惑仔",
"spd_atk": 1300,
"tokens": "鸭子",
"animation": 21,
"type": "1055010"
},
{
"star": 2,
"name": "黄金史莱姆",
"spd_atk": 1600,
"tokens": "金姆姆",
"animation": 26,
"type": "2001050"
},
{
"star": 2,
"name": "紫阳葵",
"spd_atk": 1600,
"tokens": "向日葵",
"animation": 21,
"type": "2002020"
},
{
"star": 2,
"name": "水仙炭玻玻",
"spd_atk": 1600,
"tokens": "水仙碳玻玻",
"animation": 26,
"type": "2003020"
},
{
"star": 2,
"name": "斯可可",
"spd_atk": 1600,
"tokens": "稻草人",
"animation": 26,
"type": "2004010"
},
{
"star": 2,
"name": "山猫呜拉喵",
"spd_atk": 1333,
"tokens": "山猫",
"animation": 21,
"type": "2005020"
},
{
"star": 2,
"name": "火山芙洛波",
"spd_atk": 1199,
"tokens": "火鼠 地鼠",
"animation": 21,
"type": "2006020"
},
{
"star": 2,
"name": "土偶芙洛波",
"spd_atk": 1200,
"tokens": "",
"animation": 21,
"type": "2006040"
},
{
"star": 2,
"name": "沙漠芙洛波",
"spd_atk": 1200,
"tokens": "",
"animation": 21,
"type": "2006050"
},
{
"star": 2,
"name": "土精NANO",
"spd_atk": 1199,
"tokens": "",
"animation": 26,
"type": "2007020"
},
{
"star": 2,
"name": "海藻杜吉芽",
"spd_atk": 1600,
"tokens": "海藻精 海带精",
"animation": 21,
"type": "2025020"
},
{
"star": 2,
"name": "布萝",
"spd_atk": 1600,
"tokens": "狗",
"animation": 26,
"type": "2027010"
},
{
"star": 2,
"name": "热布萝",
"spd_atk": 1650,
"tokens": "热狗",
"animation": 26,
"type": "2027020"
},
{
"star": 2,
"name": "恰斯可",
"spd_atk": 1466,
"tokens": "木桶 水桶",
"animation": 26,
"type": "2034010"
},
{
"star": 2,
"name": "乌丽卡",
"spd_atk": 1999,
"tokens": "蜗牛",
"animation": 21,
"type": "2035010"
},
{
"star": 2,
"name": "草原乌丽卡",
"spd_atk": 1999,
"tokens": "草蜗牛 风蜗牛",
"animation": 21,
"type": "2035020"
},
{
"star": 2,
"name": "熔岩乌丽卡",
"spd_atk": 1999,
"tokens": "火蜗牛",
"animation": 21,
"type": "2035030"
},
{
"star": 2,
"name": "格莉姆",
"spd_atk": 1866,
"tokens": "艾米莉亚 绿石头 emt",
"animation": 26,
"type": "2037010"
},
{
"star": 2,
"name": "格雷姆",
"spd_atk": 1999,
"tokens": "雷姆 蓝石头",
"animation": 26,
"type": "2037020"
},
{
"star": 2,
"name": "格拉姆",
"spd_atk": 1999,
"tokens": "拉姆 红石头",
"animation": 26,
"type": "2037030"
},
{
"star": 2,
"name": "白银迷迷可",
"spd_atk": 1600,
"tokens": "宝箱怪",
"animation": 26,
"type": "2038020"
},
{
"star": 2,
"name": "多萝",
"spd_atk": 1000,
"tokens": "老鼠",
"animation": 26,
"type": "2039010"
},
{
"star": 2,
"name": "小恶魔",
"spd_atk": 1600,
"tokens": "",
"animation": 21,
"type": "2056010"
},
{
"star": 2,
"name": "云元素",
"spd_atk": 1500,
"tokens": "",
"animation": 26,
"type": "2060010"
},
{
"star": 2,
"name": "卡布缇莫",
"spd_atk": 1600,
"tokens": "甲虫 卡布达 独角仙",
"animation": 26,
"type": "2063010"
},
{
"star": 2,
"name": "树精",
"spd_atk": 1600,
"tokens": "",
"animation": 21,
"type": "2064010"
},
{
"star": 2,
"name": "雨林树精",
"spd_atk": 1600,
"tokens": "",
"animation": 21,
"type": "2064020"
},
{
"star": 2,
"name": "铁背海龟",
"spd_atk": 1600,
"tokens": "乌龟",
"animation": 26,
"type": "2066010"
},
{
"star": 2,
"name": "水手蟹",
"spd_atk": 1333,
"tokens": "螃蟹",
"animation": 26,
"type": "2068010"
},
{
"star": 2,
"name": "海兵虾",
"spd_atk": 1500,
"tokens": "海虾兵 皮皮虾",
"animation": 21,
"type": "2069010"
},
{
"star": 2,
"name": "布丁史莱姆",
"spd_atk": 1600,
"tokens": "布丁姆姆 焦糖姆姆",
"animation": 26,
"type": "2073010"
},
{
"star": 2,
"name": "纯白史莱姆",
"spd_atk": 1600,
"tokens": "纯白姆姆 白史",
"animation": 26,
"type": "2078010"
},
{
"star": 2,
"name": "克洛洛",
"spd_atk": 1000,
"tokens": "守宫",
"animation": 26,
"type": "2101010"
},
{
"star": 2,
"name": "冥界土偶",
"spd_atk": 1500,
"tokens": "",
"animation": 26,
"type": "2106020"
},
{
"star": 2,
"name": "沙地土偶",
"spd_atk": 1500,
"tokens": "",
"animation": 26,
"type": "2106040"
},
{
"star": 2,
"name": "劳工哥布林",
"spd_atk": 1600,
"tokens": "",
"animation": 26,
"type": "2111010"
},
{
"star": 3,
"name": "彩虹史莱姆",
"spd_atk": 1600,
"tokens": "彩虹姆姆 彩姆姆",
"animation": 26,
"type": "3001070"
},
{
"star": 3,
"name": "活化史莱姆",
"spd_atk": 1700,
"tokens": "活化姆姆",
"animation": 26,
"type": "3001080"
},
{
"star": 3,
"name": "MIO",
"spd_atk": 1330,
"tokens": "MIO",
"animation": 21,
"type": "3010010"
},
{
"star": 3,
"name": "露库希安",
"spd_atk": 1600,
"tokens": "老师 妖精",
"animation": 21,
"type": "3011010"
},
{
"star": 3,
"name": "义贼多米诺(近战)",
"spd_atk": 1466,
"tokens": "狗",
"animation": 26,
"type": "3012010"
},
{
"star": 3,
"name": "义贼多米诺(远程)",
"spd_atk": 1466,
"tokens": "狗",
"animation": 21,
"type": "3012010.r"
},
{
"star": 3,
"name": "海歌姬·赛伦",
"spd_atk": 1600,
"tokens": "琴女 人鱼",
"animation": 21,
"type": "3013010"
},
{
"star": 3,
"name": "雷素·鸣",
"spd_atk": 1600,
"tokens": "",
"animation": 21,
"type": "3014010"
},
{
"star": 3,
"name": "基雅·库罗",
"spd_atk": 1733,
"tokens": "乌鸦 女巫 魔理沙",
"animation": 21,
"type": "3015010"
},
{
"star": 3,
"name": "秋风希露芙",
"spd_atk": 1199,
"tokens": "",
"animation": 26,
"type": "3016010"
},
{
"star": 3,
"name": "拉克斯·蕾妮娅",
"spd_atk": 1600,
"tokens": "冰女",
"animation": 26,
"type": "3017010"
},
{
"star": 3,
"name": "血口荆棘·辛普拉",
"spd_atk": 1333,
"tokens": "食人花 女王",
"animation": 26,
"type": "3026010"
},
{
"star": 3,
"name": "妖蛾子",
"spd_atk": 1733,
"tokens": "幺蛾子",
"animation": 21,
"type": "3028010"
},
{
"star": 3,
"name": "高原火角·阿卡铃",
"spd_atk": 2666,
"tokens": "山羊 阿卡林 大角羊",
"animation": 26,
"type": "3029010"
},
{
"star": 3,
"name": "花藕子",
"spd_atk": 1066,
"tokens": "",
"animation": 21,
"type": "3033010"
},
{
"star": 3,
"name": "月兔蕾雅",
"spd_atk": 1600,
"tokens": "兔子",
"animation": 21,
"type": "3036010"
},
{
"star": 3,
"name": "必达信使·哈托莉",
"spd_atk": 1300,
"tokens": "鸽子 咕咕",
"animation": 21,
"type": "3041010"
},
{
"star": 3,
"name": "白浪激流·克洛琪",
"spd_atk": 1600,
"tokens": "青蛙",
"animation": 26,
"type": "3042010"
},
{
"star": 3,
"name": "桑图艾尔",
"spd_atk": 1300,
"tokens": "半人马",
"animation": 26,
"type": "3043010"
},
{
"star": 3,
"name": "冰川大亨·夏洛蒂",
"spd_atk": 1400,
"tokens": "企鹅 QQ",
"animation": 21,
"type": "3044010"
},
{
"star": 3,
"name": "野林之歌·木野子",
"spd_atk": 1500,
"tokens": "蘑菇",
"animation": 21,
"type": "3051010"
},
{
"star": 3,
"name": "蜂刺骑士·修瓦莉",
"spd_atk": 1200,
"tokens": "蜜蜂",
"animation": 26,
"type": "3052010"
},
{
"star": 3,
"name": "夜之守·加尔戈萝",
"spd_atk": 1400,
"tokens": "加尔戈罗 石像怪 石像鬼",
"animation": 21,
"type": "3054010"
},
{
"star": 3,
"name": "旅人熊·莫利贝尔",
"spd_atk": 1800,
"tokens": "",
"animation": 26,
"type": "3059010"
},
{
"star": 3,
"name": "海之光·佩拉姬娅",
"spd_atk": 1600,
"tokens": "水母 海蜇皮",
"animation": 21,
"type": "3065010"
},
{
"star": 3,
"name": "蜜桃子·沫沫",
"spd_atk": 1450,
"tokens": "",
"animation": 16,
"type": "3070010"
},
{
"star": 3,
"name": "焦糖布丁史莱姆",
"spd_atk": 1600,
"tokens": "布丁 焦糖",
"animation": 26,
"type": "3073020"
},
{
"star": 3,
"name": "火元素·焰",
"spd_atk": 1600,
"tokens": "",
"animation": 21,
"type": "3075010"
},
{
"star": 3,
"name": "尖啸隐者·曼德拉",
"spd_atk": 1300,
"tokens": "",
"animation": 26,
"type": "3076010"
},
{
"star": 3,
"name": "斩骨血刃·德莉尔",
"spd_atk": 1333,
"tokens": "刀妹",
"animation": 26,
"type": "3097010"
},
{
"star": 3,
"name": "百貌之星·莉欧娜",
"spd_atk": 1300,
"tokens": "变色龙",
"animation": 26,
"type": "3100010"
},
{
"star": 3,
"name": "森林土偶",
"spd_atk": 1500,
"tokens": "",
"animation": 26,
"type": "3106010"
},
{
"star": 3,
"name": "海洋土偶",
"spd_atk": 1500,
"tokens": "",
"animation": 21,
"type": "3106030"
},
{
"star": 3,
"name": "黄金土偶",
"spd_atk": 1400,
"tokens": "金土偶",
"animation": 26,
"type": "3106040"
},
{
"star": 3,
"name": "冥土从兽·阿米特",
"spd_atk": 1400,
"tokens": "",
"animation": 21,
"type": "3107010"
},
{
"star": 3,
"name": "小狐狸·安鲁尼亚",
"spd_atk": 1500,
"tokens": "",
"animation": 26,
"type": "3110010"
},
{
"star": 3,
"name": "哥布林·毁灭者",
"spd_atk": 1400,
"tokens": "",
"animation": 26,
"type": "3112010"
},
{
"star": 3,
"name": "真护枪骑·咩莉",
"spd_atk": 1650,
"tokens": "",
"animation": 26,
"type": "3119010"
},
{
"star": 3,
"name": "大罪公主·幽莉安",
"spd_atk": 1600,
"tokens": "",
"animation": 21,
"type": "3124010"
},
{
"star": 3,
"name": "毛绒之耳·乌莉珀",
"spd_atk": 1800,
"tokens": "",
"animation": 21,
"type": "3129010"
},
{
"star": 3,
"name": "狗头人",
"spd_atk": 1400,
"tokens": "",
"animation": 26,
"type": "3131010"
},
{
"star": 3,
"name": "魔族精兵",
"spd_atk": 1600,
"tokens": "",
"animation": 26,
"type": "3134010"
},
{
"star": 3,
"name": "火焰猫·空",
"spd_atk": 1600,
"tokens": "火猫",
"animation": 21,
"type": "3139010"
},
{
"star": 3,
"name": "影护尖兵·芙拉莫",
"spd_atk": 1200,
"tokens": "蝙蝠",
"animation": 21,
"type": "3146010"
},
{
"star": 3,
"name": "蝙蝠(影护尖兵·芙拉莫召唤物)",
"spd_atk": 1300,
"tokens": "蝙蝠",
"animation": 26,
"type": "3146010.s"
},
{
"star": 3,
"name": "棉花糖信使·绵绵",
"spd_atk": 1600,
"tokens": "棉花糖 绵绵",
"animation": 21,
"type": "3149010"
},
{
"star": 4,
"name": "公主史莱姆",
"spd_atk": 1600,
"tokens": "公主 粉姆姆",
"animation": 21,
"type": "4001060"
},
{
"star": 4,
"name": "狂犬多米诺",
"spd_atk": 1666,
"tokens": "狗 poi",
"animation": 26,
"type": "4012020"
},
{
"star": 4,
"name": "七尾·稲荷御澄",
"spd_atk": 1600,
"tokens": "狐狸",
"animation": 21,
"type": "4018010"
},
{
"star": 4,
"name": "真护·天茧",
"spd_atk": 1600,
"tokens": "黑龙",
"animation": 26,
"type": "4019010"
},
{
"star": 4,
"name": "莉安夕",
"spd_atk": 2399,
"tokens": "鱼龙 脆脆鲨 水怪",
"animation": 26,
"type": "4020010"
},
{
"star": 4,
"name": "卡库拉拉兹巴",
"spd_atk": 1600,
"tokens": "酋长 猫长老 大长老",
"animation": 21,
"type": "4021010"
},
{
"star": 4,
"name": "阿芙莉芒",
"spd_atk": 1600,
"tokens": "大眼 邪神",
"animation": 26,
"type": "4022010"
},
{
"star": 4,
"name": "宝石迷迷可",
"spd_atk": 1466,
"tokens": "富婆 宝箱怪",
"animation": 26,
"type": "4038020"
},
{
"star": 4,
"name": "死亡缠绕·萝丝娜",
"spd_atk": 1300,
"tokens": "蜘蛛",
"animation": 21,
"type": "4040010"
},
{
"star": 4,
"name": "沼江夜鸣·鵺",
"spd_atk": 1400,
"tokens": "妖怪 夜鸟",
"animation": 26,
"type": "4045010"
},
{
"star": 4,
"name": "罪骨公主·斯卡莉安",
"spd_atk": 1900,
"tokens": "骨头妹",
"animation": 26,
"type": "4046010"
},
{
"star": 4,
"name": "艾露玛",
"spd_atk": 1200,
"tokens": "水龙",
"animation": 26,
"type": "4049010"
},
{
"star": 4,
"name": "露科亚",
"spd_atk": 1800,
"tokens": "",
"animation": 26,
"type": "4050010"
},
{
"star": 4,
"name": "命运之女·拉米娅",
"spd_atk": 1700,
"tokens": "蛇女 人妻",
"animation": 21,
"type": "4053010"
},
{
"star": 4,
"name": "赤月之牙·希瓦",
"spd_atk": 1466,
"tokens": "",
"animation": 21,
"type": "4058010"
},
{
"star": 4,
"name": "自由之翼·格里芬",
"spd_atk": 1600,
"tokens": "狮鹫",
"animation": 21,
"type": "4061010"
},
{
"star": 4,
"name": "山王卿·曼缇柯尔",
"spd_atk": 1600,
"tokens": "蝎狮 蝎尾狮",
"animation": 26,
"type": "4062010"
},
{
"star": 4,
"name": "月光蝶·千秋",
"spd_atk": 1600,
"tokens": "蝴蝶",
"animation": 21,
"type": "4071010"
},
{
"star": 3,
"name": "哈克",
"spd_atk": 1200,
"tokens": "",
"animation": 26,
"type": "4076010"