-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdict.js
More file actions
1919 lines (1912 loc) · 65.7 KB
/
dict.js
File metadata and controls
1919 lines (1912 loc) · 65.7 KB
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
"use strict";
var database = [
{
"name": "黑暗贤者",
"pic": "[img]./mon_201812/02/-659kbQ5-301iZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>奔腾</span>\n<span style='font-weight:bold;color:#ffffff;'>主动2:</span>将另一个友方单位移至另一条兵线。",
"color": "green"
},
{
"name": "马格纳斯",
"pic": "[img]./mon_201812/02/-659kbQ5-d61pZ21T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "树精卫士",
"pic": "[img]./mon_201812/02/-659kbQ5-15s6Z20T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>钢铁树枝</span>\n树精卫士的友方近邻+2护甲。",
"color": "green"
},
{
"name": "全知骑士",
"pic": "[img]./mon_201812/02/-659kbQ5-ah1rZ1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>洗礼</span>\n<span style='font-weight:bold;color:#ffffff;'>主动2:</span>对一个单位进行3治疗。",
"color": "green"
},
{
"name": "魅惑魔女",
"pic": "[img]./mon_201812/02/-659kbQ5-jyvjZ26T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>自然之助</span>\n魅惑魔女+2恢复。魅惑魔女的友方近邻+2恢复。",
"color": "green"
},
{
"name": "卓尔游侠",
"pic": "[img]./mon_201812/02/-659kbQ5-7w0yZ23T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>精准灵气</span>\n所有兵线上的其他友方单位+1攻击。",
"color": "green"
},
{
"name": "冥界亚龙",
"pic": "[img]./mon_201812/02/-659kbQ5-hoviZ1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>腐蚀皮肤</span>\n当一个单位对冥界亚龙造成战斗伤害时,修改该单位,使其-1攻击。",
"color": "green"
},
{
"name": "瑞克斯",
"pic": "[img]./mon_201812/02/-659kbQ5-5lzzZ1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>不懈叛军</span>\n瑞克斯具有快速部署。",
"color": "green"
},
{
"name": "陈",
"pic": "[img]./mon_201812/02/-659kbQ5-ev96Z20T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>神圣劝化</span>\n<span style='font-weight:bold;color:#ffffff;'>主动4:</span>控制一名敌方小兵。",
"color": "green"
},
{
"name": "亚巴顿",
"pic": "[img]./mon_201812/02/-659kbQ5-31ytZ21T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>回光返照</span>\n<span style='font-weight:bold;color:#ffffff;'>主动2:</span>完整治疗亚巴顿,并使其在本回合获得伤害免疫。",
"color": "green"
},
{
"name": "狼人",
"pic": "[img]./mon_201812/02/-659kbQ5-dkkvZ21T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>野性驱使</span>\n狼人的友方近邻+2攻击。",
"color": "green"
},
{
"name": "梦者法夫涵",
"pic": "[img]./mon_201812/02/-659kbQ5-1vrfZ20T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>兽群领袖</span>\n梦者法夫涵的友方近邻+1护甲。",
"color": "green"
},
{
"name": "玫叶神医",
"pic": "[img]./mon_201812/02/-659kbQ5-gc4sZ22T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "遗迹卫士",
"pic": "[img]./mon_201812/02/-659kbQ5-8yu6Z1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "玫叶墙",
"pic": "[img]./mon_201812/02/-659kbQ5-10qeZ23T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "自私教士",
"pic": "[img]./mon_201812/02/-659kbQ5-ehniZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "玫叶德鲁伊",
"pic": "[img]./mon_201812/02/-659kbQ5-6piaZ21T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "暴走地狱熊怪",
"pic": "[img]./mon_201812/02/-659kbQ5-kpqaZ22T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "野蛮灵狼",
"pic": "[img]./mon_201812/02/-659kbQ5-d9g8Z1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "萨特决斗家",
"pic": "[img]./mon_201812/02/-659kbQ5-f1b5Z20T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "雷肤兽领袖",
"pic": "[img]./mon_201812/02/-659kbQ5-3eytZ1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "豺狼人殉道者",
"pic": "[img]./mon_201812/02/-659kbQ5-d8psZ1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "雷肤兽群",
"pic": "[img]./mon_201812/02/-659kbQ5-1f4pZ1yT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "评议团密使",
"pic": "[img]./mon_201812/02/-659kbQ5-as3bZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "瑞文泰尔护卫队",
"pic": "[img]./mon_201812/02/-659kbQ5-kg2eZ27T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "叛军诱饵",
"pic": "[img]./mon_201812/02/-659kbQ5-clhtZ1yT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "打铁小魔铁匠",
"pic": "[img]./mon_201812/02/-659kbQ5-1mobZ1yT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "潜行者先锋",
"pic": "[img]./mon_201812/02/-659kbQ5-bg9mZ20T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "藐视权威",
"pic": "[img]./mon_201812/02/-659kbQ5-cujiZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "窃取力量",
"pic": "[img]./mon_201812/02/-659kbQ5-29fxZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "攻其不备",
"pic": "[img]./mon_201812/02/-659kbQ5-ch7hZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "净化仪式",
"pic": "[img]./mon_201812/02/-659kbQ5-2kyZ1lT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "恫吓",
"pic": "[img]./mon_201812/02/-659kbQ5-95niZ1lT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "神圣旨意",
"pic": "[img]./mon_201812/02/-659kbQ5-6f65Z1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "回春之魂",
"pic": "[img]./mon_201812/02/-659kbQ5-iaidZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "魔霭福泽",
"pic": "[img]./mon_201812/02/-659kbQ5-4q79Z1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "绕树",
"pic": "[img]./mon_201812/02/-659kbQ5-fp8dZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "妙手回春",
"pic": "[img]./mon_201812/02/-659kbQ5-ej01Z1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "全视者恩泽",
"pic": "[img]./mon_201812/02/-659kbQ5-2stdZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "绽放防御",
"pic": "[img]./mon_201812/02/-659kbQ5-cdl0Z1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "上帝之手",
"pic": "[img]./mon_201812/02/-659kbQ5-8q2Z1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "狂风",
"pic": "[img]./mon_201812/02/-659kbQ5-asyhZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "神圣干预",
"pic": "[img]./mon_201812/02/-659kbQ5-dfqZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "五星连珠",
"pic": "[img]./mon_201812/02/-659kbQ5-9i5wZ1lT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "铁树枝干守护",
"pic": "[img]./mon_201812/02/-659kbQ5-j627Z1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "衰退诅咒",
"pic": "[img]./mon_201812/02/-659kbQ5-6zitZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "武装叛军",
"pic": "[img]./mon_201812/02/-659kbQ5-gqq7Z1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "喝斥",
"pic": "[img]./mon_201812/02/-659kbQ5-4jotZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "捍卫弱者",
"pic": "[img]./mon_201812/02/-659kbQ5-kgklZ1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "蝮蛇突袭",
"pic": "[img]./mon_201812/02/-659kbQ5-8hc8Z1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "无光之盾",
"pic": "[img]./mon_201812/02/-659kbQ5-i3t6Z1yT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "离子外壳",
"pic": "[img]./mon_201812/02/-659kbQ5-5uloZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "授予力量",
"pic": "[img]./mon_201812/02/-659kbQ5-ht44Z1yT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "鲁姆斯克的祝福",
"pic": "[img]./mon_201812/02/-659kbQ5-il11Z1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "腐蚀迷雾",
"pic": "[img]./mon_201812/02/-659kbQ5-6xycZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "青翠庇护",
"pic": "[img]./mon_201812/02/-659kbQ5-jg29Z1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "命不该绝",
"pic": "[img]./mon_201812/02/-659kbQ5-8s1kZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "癫狂之月祭坛",
"pic": "[img]./mon_201812/02/-659kbQ5-i8qcZ1nT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "魔霭迷雾",
"pic": "[img]./mon_201812/02/-659kbQ5-6wznZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "赛莉蒙妮的眷顾",
"pic": "[img]./mon_201812/02/-659kbQ5-g6maZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "地主优势",
"pic": "[img]./mon_201812/02/-659kbQ5-4053Z1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "梦者之路",
"pic": "[img]./mon_201812/02/-659kbQ5-d9tdZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "秘密出土",
"pic": "[img]./mon_201812/02/-659kbQ5-15gaZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "green"
},
{
"name": "宙斯",
"pic": "[img]./mon_201812/02/-659kbQ5-ky1xZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>静电场</span>\n打出一张<span style='font-weight:bold;color:#2f7492;'>蓝色法术</span>后,对宙斯的敌方近邻造成1透甲伤害。",
"color": "blue"
},
{
"name": "冰晶圣女",
"pic": "[img]./mon_201812/02/-659kbQ5-anmsZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>奥术灵气</span>\n在各兵线上首次打出友方法术后,该兵线上的塔恢复2魔力。",
"color": "blue"
},
{
"name": "天怒法师",
"pic": "[img]./mon_201812/02/-659kbQ5-l6xpZ21T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>震荡光弹</span>\n<span style='font-weight:bold;color:#ffffff;'>主动2:</span>在本回合使一名英雄及其友方近邻-2护甲。",
"color": "blue"
},
{
"name": "普瑞蕾斯",
"pic": "[img]./mon_201812/02/-659kbQ5-97xyZ1kT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>信仰使者</span>\ng:204部署阶段,召唤一名<span style='font-weight:bold;color:#ffffff;'>近战小兵</span>至普瑞蕾斯的兵线。",
"color": "blue"
},
{
"name": "殁境神蚀者",
"pic": "[img]./mon_201812/02/-659kbQ5-ix3eZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>精华灵气</span>\n打出一张<span style='font-weight:bold;color:#2f7492;'>蓝色卡牌</span>后,有50%几率恢复2魔力。",
"color": "blue"
},
{
"name": "食人魔魔法师",
"pic": "[img]./mon_201812/02/-659kbQ5-7w3vZ1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>多重施法</span>\n打出一张<span style='font-weight:bold;color:#2f7492;'>蓝色法术</span>后,有25%几率将该卡牌的基础副本加入你的手牌。",
"color": "blue"
},
{
"name": "撼地者",
"pic": "[img]./mon_201812/02/-659kbQ5-hn0wZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>沟壑</span>\n<span style='font-weight:bold;color:#ffffff;'>主动4:</span>在本回合晕眩撼地者的敌方近邻。",
"color": "blue"
},
{
"name": "卡娜",
"pic": "[img]./mon_201812/02/-659kbQ5-5sewZ21T1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>征服使者</span>\n将随机友方<span style='font-weight:bold;color:#ffffff;'>近战小兵</span>部署至卡娜的兵线。",
"color": "blue"
},
{
"name": "露娜",
"pic": "[img]./mon_201812/02/-659kbQ5-gwkmZ1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>月光</span>\n行动阶段前,对一个随机敌人造成1透甲伤害,并使你手牌和牌组中的三张随机<span style='font-weight:bold;color:#ffffff;'>月蚀</span>卡牌增加1能量。",
"color": "blue"
},
{
"name": "米波",
"pic": "[img]./mon_201812/02/-659kbQ5-5atnZ1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>忽悠</span>\n<span style='font-weight:bold;color:#ffffff;'>主动2:</span> 将米波移至友方<span style='font-weight:bold;color:#ffffff;'>米波</span>的兵线,对新的敌方近邻造成2伤害。\n\n<span style='font-weight:bold;color:#ffffff;'>合则倒</span>\n米波具有灵魂束缚。(如果米波死亡,每条兵线上的所有其他友方米波也会死亡。)",
"color": "blue"
},
{
"name": "剧毒术士",
"pic": "[img]./mon_201812/02/-659kbQ5-exz8Z1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>剧毒本性</span>\n每次部署阶段,召唤一名<span style='font-weight:bold;color:#ffffff;'>瘟疫守卫</span>至剧毒术士的兵线。",
"color": "blue"
},
{
"name": "智者吉姆伊",
"pic": "[img]./mon_201812/02/-659kbQ5-4dxsZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>长者的智慧</span>\n<span style='font-weight:bold;color:#ffffff;'>主动4:</span>抽一张牌。",
"color": "blue"
},
{
"name": "巨魔占卜师",
"pic": "[img]./mon_201812/02/-659kbQ5-ldntZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "萨特魔术师",
"pic": "[img]./mon_201812/02/-659kbQ5-9o06Z1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "赛莉蒙妮的化身",
"pic": "[img]./mon_201812/02/-659kbQ5-j9s9Z1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "不屈僵尸",
"pic": "[img]./mon_201812/02/-659kbQ5-7fjnZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "瘟疫守卫",
"pic": "[img]./mon_201812/02/-659kbQ5-gzqaZ1hT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "不惜代价",
"pic": "[img]./mon_201812/02/-659kbQ5-flsrZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "疯狂低语",
"pic": "[img]./mon_201812/02/-659kbQ5-5ks1Z1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "腹语术",
"pic": "[img]./mon_201812/02/-659kbQ5-g1yxZ1mT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "雷霆风暴",
"pic": "[img]./mon_201812/02/-659kbQ5-7f86Z1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "狡诈计谋",
"pic": "[img]./mon_201812/02/-659kbQ5-kq7nZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "塔防炮火",
"pic": "[img]./mon_201812/02/-659kbQ5-ccixZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "勒令",
"pic": "[img]./mon_201812/02/-659kbQ5-3ufjZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "战场迷雾",
"pic": "[img]./mon_201812/02/-659kbQ5-i8rbZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "遥控引爆",
"pic": "[img]./mon_201812/02/-659kbQ5-5ztmZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "奥术突袭",
"pic": "[img]./mon_201812/02/-659kbQ5-ffqdZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "误伤",
"pic": "[img]./mon_201812/02/-659kbQ5-3bqxZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "拖延战术",
"pic": "[img]./mon_201812/02/-659kbQ5-cgnjZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "次元传送门",
"pic": "[img]./mon_201812/02/-659kbQ5-6muZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "达摩克斯霹雳",
"pic": "[img]./mon_201812/02/-659kbQ5-9htzZ1iT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "闪电一击",
"pic": "[img]./mon_201812/02/-659kbQ5-ixecZ1mT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "为时未晚",
"pic": "[img]./mon_201812/02/-659kbQ5-7094Z1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "呼叫预备军",
"pic": "[img]./mon_201812/02/-659kbQ5-gp3aZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "金钱之怒",
"pic": "[img]./mon_201812/02/-659kbQ5-5kqoZ1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "弱肉强食",
"pic": "[img]./mon_201812/02/-659kbQ5-f1ynZ1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "回音击",
"pic": "[img]./mon_201812/02/-659kbQ5-5otbZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "恶魔启示",
"pic": "[img]./mon_201812/02/-659kbQ5-fudsZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "灭绝",
"pic": "[img]./mon_201812/02/-659kbQ5-6ovnZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "低空扫射",
"pic": "[img]./mon_201812/02/-659kbQ5-g60hZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "先见之明",
"pic": "[img]./mon_201812/02/-659kbQ5-5efpZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "自我破坏",
"pic": "[img]./mon_201812/02/-659kbQ5-eviaZ1nT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "迷失时空",
"pic": "[img]./mon_201812/02/-659kbQ5-2t7iZ1lT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "雷神之怒",
"pic": "[img]./mon_201812/02/-659kbQ5-cf3iZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "冰封禁制",
"pic": "[img]./mon_201812/02/-659kbQ5-xeiZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "星体禁锢",
"pic": "[img]./mon_201812/02/-659kbQ5-bbhbZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "奔腾风暴",
"pic": "[img]./mon_201812/02/-659kbQ5-lazhZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "…我也来一个",
"pic": "[img]./mon_201812/02/-659kbQ5-apalZ1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "神秘之耀",
"pic": "[img]./mon_201812/02/-659kbQ5-kwh6Z1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "月蚀",
"pic": "[img]./mon_201812/02/-659kbQ5-8r3eZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "分则立",
"pic": "[img]./mon_201812/02/-659kbQ5-i1crZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "播撒烈毒",
"pic": "[img]./mon_201812/02/-659kbQ5-5zstZ1lT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "战场控制",
"pic": "[img]./mon_201812/02/-659kbQ5-f8oxZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "瞭望塔",
"pic": "[img]./mon_201812/02/-659kbQ5-71pjZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "困惑符文",
"pic": "[img]./mon_201812/02/-659kbQ5-hs95Z1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "信使之巢",
"pic": "[img]./mon_201812/02/-659kbQ5-5s8cZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "阿哈利姆圣所",
"pic": "[img]./mon_201812/02/-659kbQ5-ew2fZ1nT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "咆哮意志",
"pic": "[img]./mon_201812/02/-659kbQ5-2y4tZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "引燃",
"pic": "[img]./mon_201812/02/-659kbQ5-cecbZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "烈焰",
"pic": "[img]./mon_201812/02/-659kbQ5-1ieeZ1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "智者之路",
"pic": "[img]./mon_201812/02/-659kbQ5-aw8hZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "破碎时间轴",
"pic": "[img]./mon_201812/02/-659kbQ5-tzvZ1nT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "兵营",
"pic": "[img]./mon_201812/02/-659kbQ5-ajfvZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "blue"
},
{
"name": "熊战士",
"pic": "[img]./mon_201812/02/-659kbQ5-7qidZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>怒意狂击</span>\n当熊战士对一个单位造成战斗伤害时,修改该单位,使其-1护甲。",
"color": "red"
},
{
"name": "军团指挥官",
"pic": "[img]./mon_201812/02/-659kbQ5-jegwZ1zT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>勇气之霎</span>\n军团指挥官+2反伤。",
"color": "red"
},
{
"name": "斯温",
"pic": "[img]./mon_201812/02/-659kbQ5-91s6Z1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>巨力挥舞</span>\n斯温+X顺势,X为其攻击的一半。",
"color": "red"
},
{
"name": "梅兹",
"pic": "[img]./mon_201812/02/-659kbQ5-ifcdZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "帕格纳",
"pic": "[img]./mon_201812/02/-659kbQ5-6ky8Z1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>幽冥爆轰</span>\n<span style='font-weight:bold;color:#ffffff;'>主动3:</span>惩处一个随机敌方强化。",
"color": "red"
},
{
"name": "钢背兽",
"pic": "[img]./mon_201812/02/-659kbQ5-ft0pZ1pT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>酒馆醉拳</span>\n当阻挡其前的英雄死亡后,修改钢背兽,使其+2护甲。",
"color": "red"
},
{
"name": "兽王",
"pic": "[img]./mon_201812/02/-659kbQ5-3x5kZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>野性呼唤</span>\n<span style='font-weight:bold;color:#ffffff;'>主动3:</span>召唤一头<span style='font-weight:bold;color:#ffffff;'>忠诚野兽</span>。",
"color": "red"
},
{
"name": "潮汐猎人",
"pic": "[img]./mon_201812/02/-659kbQ5-dvfrZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>毁灭</span>\n<span style='font-weight:bold;color:#ffffff;'>主动4:</span>在本回合晕眩潮汐猎人的敌方近邻,其他敌人也有50%几率被晕眩。",
"color": "red"
},
{
"name": "伐木机",
"pic": "[img]./mon_201812/02/-659kbQ5-4ez8Z1lT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>活性护甲</span>\n伐木机每有一个攻击者,便+1护甲。",
"color": "red"
},
{
"name": "半人马战行者",
"pic": "[img]./mon_201812/02/-659kbQ5-dyksZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "<span style='font-weight:bold;color:#ffffff;'>反击</span>\n半人马战行者+2反伤。",
"color": "red"
},
{
"name": "斧王",
"pic": "[img]./mon_201812/02/-659kbQ5-1qv9Z1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "勇者基弗",
"pic": "[img]./mon_201812/02/-659kbQ5-axdvZ1mT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "忠诚野兽",
"pic": "[img]./mon_201812/02/-659kbQ5-9gaaZ1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "红雾掠夺者",
"pic": "[img]./mon_201812/02/-659kbQ5-knijZ1xT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "石堂城精英",
"pic": "[img]./mon_201812/02/-659kbQ5-8zhlZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "食人魔士兵",
"pic": "[img]./mon_201812/02/-659kbQ5-idysZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "地狱熊怪摧残者",
"pic": "[img]./mon_201812/02/-659kbQ5-658aZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "被诅咒的萨特",
"pic": "[img]./mon_201812/02/-659kbQ5-fnyrZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "古铜军团士兵",
"pic": "[img]./mon_201812/02/-659kbQ5-3a3yZ1nT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "食人魔投尸手",
"pic": "[img]./mon_201812/02/-659kbQ5-ch8lZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "断骨格斗士",
"pic": "[img]./mon_201812/02/-659kbQ5-1gcuZ1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "基恩巨傀儡",
"pic": "[img]./mon_201812/02/-659kbQ5-amj9Z1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "亡命佣兵",
"pic": "[img]./mon_201812/02/-659kbQ5-jtrbZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "军团旗手",
"pic": "[img]./mon_201812/02/-659kbQ5-84ceZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "叛乱煽动者",
"pic": "[img]./mon_201812/02/-659kbQ5-hhvqZ1vT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "半人马猎者",
"pic": "[img]./mon_201812/02/-659kbQ5-5dvlZ1wT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "打铁小魔武器大师",
"pic": "[img]./mon_201812/02/-659kbQ5-ersvZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "胜利时刻",
"pic": "[img]./mon_201812/02/-659kbQ5-dxqzZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "致残重击",
"pic": "[img]./mon_201812/02/-659kbQ5-2f1mZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "粘稠鼻液",
"pic": "[img]./mon_201812/02/-659kbQ5-ewuaZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "触发陷阱",
"pic": "[img]./mon_201812/02/-659kbQ5-6kmaZ1tT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "特蕾丝汀的战旗",
"pic": "[img]./mon_201812/02/-659kbQ5-jqvjZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "忍痛奋战",
"pic": "[img]./mon_201812/02/-659kbQ5-b7y4Z1rT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "撕裂护甲",
"pic": "[img]./mon_201812/02/-659kbQ5-2y3vZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "新命令",
"pic": "[img]./mon_201812/02/-659kbQ5-g41oZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "冷不胜防",
"pic": "[img]./mon_201812/02/-659kbQ5-90vuZ1uT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "怒火高涨",
"pic": "[img]./mon_201812/02/-659kbQ5-pxbZ1sT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "一扫而空",
"pic": "[img]./mon_201812/02/-659kbQ5-dshbZ1mT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "惹是生非",
"pic": "[img]./mon_201812/02/-659kbQ5-2etaZ1oT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{
"name": "决斗",
"pic": "[img]./mon_201812/02/-659kbQ5-bpjpZ1qT1kSem-oq.png.thumb_s.jpg[/img]",
"others": "",
"color": "red"
},
{