-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcards.json
More file actions
1575 lines (1575 loc) · 52 KB
/
cards.json
File metadata and controls
1575 lines (1575 loc) · 52 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
[
{
"key": "knight",
"name": "Knight",
"sc_key": "Knight",
"elixir": 3,
"type": "Troop",
"rarity": "Common",
"arena": 0,
"description": "A tough melee fighter. The Barbarian's handsome, cultured cousin. Rumor has it that he was knighted based on the sheer awesomeness of his mustache alone.",
"id": 26000000,
"evolved_spells_sc_key": "Knight_EV1",
"is_evolved": false
},
{
"key": "archers",
"name": "Archers",
"sc_key": "Archer",
"elixir": 3,
"type": "Troop",
"rarity": "Common",
"arena": 0,
"description": "A pair of lightly armored ranged attackers. They'll help you take down ground and air units, but you're on your own with hair coloring advice.",
"id": 26000001,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "goblins",
"name": "Goblins",
"sc_key": "Goblins",
"elixir": 2,
"type": "Troop",
"rarity": "Common",
"arena": 1,
"description": "Four fast, unarmored melee attackers. Small, fast, green and mean!",
"id": 26000002,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "giant",
"name": "Giant",
"sc_key": "Giant",
"elixir": 5,
"type": "Troop",
"rarity": "Rare",
"arena": 0,
"description": "Slow but durable, only attacks buildings. A real one-man wrecking crew!",
"id": 26000003,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "pekka",
"name": "P.E.K.K.A",
"sc_key": "Pekka",
"elixir": 7,
"type": "Troop",
"rarity": "Epic",
"arena": 6,
"description": "A heavily armored, slow melee fighter. Swings from the hip, but packs a huge punch.",
"id": 26000004,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "minions",
"name": "Minions",
"sc_key": "Minions",
"elixir": 3,
"type": "Troop",
"rarity": "Common",
"arena": 0,
"description": "Three fast, unarmored flying attackers. Roses are red, minions are blue, they can fly, and will crush you!",
"id": 26000005,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "balloon",
"name": "Balloon",
"sc_key": "Balloon",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 7,
"description": "As pretty as they are, you won't want a parade of THESE balloons showing up on the horizon. Drops powerful bombs and when shot down, crashes dealing area damage.",
"id": 26000006,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "witch",
"name": "Witch",
"sc_key": "Witch",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 6,
"description": "Summons Skeletons, shoots destructo beams, has glowing pink eyes that unfortunately don't shoot lasers.",
"id": 26000007,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "barbarians",
"name": "Barbarians",
"sc_key": "Barbarians",
"elixir": 5,
"type": "Troop",
"rarity": "Common",
"arena": 3,
"description": "A horde of melee attackers with mean mustaches and even meaner tempers.",
"id": 26000008,
"evolved_spells_sc_key": "Barbarians_EV1",
"is_evolved": false
},
{
"key": "golem",
"name": "Golem",
"sc_key": "Golem",
"elixir": 8,
"type": "Troop",
"rarity": "Epic",
"arena": 10,
"description": "Slow but durable, only attacks buildings. When destroyed, explosively splits into two Golemites and deals area damage!",
"id": 26000009,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "skeletons",
"name": "Skeletons",
"sc_key": "Skeletons",
"elixir": 1,
"type": "Troop",
"rarity": "Common",
"arena": 2,
"description": "Three fast, very weak melee fighters. Surround your enemies with this pile of bones!",
"id": 26000010,
"evolved_spells_sc_key": "Skeletons_EV1",
"is_evolved": false
},
{
"key": "valkyrie",
"name": "Valkyrie",
"sc_key": "Valkyrie",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 2,
"description": "Tough melee fighter, deals area damage around her. Swarm or horde, no problem! She can take them all out with a few spins.",
"id": 26000011,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "skeleton-army",
"name": "Skeleton Army",
"sc_key": "SkeletonArmy",
"elixir": 3,
"type": "Troop",
"rarity": "Epic",
"arena": 6,
"description": "Spawns an army of Skeletons. Meet Larry and his friends Harry, Gerry, Terry, Mary, etc.",
"id": 26000012,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "bomber",
"name": "Bomber",
"sc_key": "Bomber",
"elixir": 2,
"type": "Troop",
"rarity": "Common",
"arena": 2,
"description": "Small, lightly protected skeleton who throws bombs. Deals area damage that can wipe out a swarm of enemies.",
"id": 26000013,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "musketeer",
"name": "Musketeer",
"sc_key": "Musketeer",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 0,
"description": "Don't be fooled by her delicately coiffed hair, the Musketeer is a mean shot with her trusty boomstick.",
"id": 26000014,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "baby-dragon",
"name": "Baby Dragon",
"sc_key": "BabyDragon",
"elixir": 4,
"type": "Troop",
"rarity": "Epic",
"arena": 6,
"description": "Burps fireballs from the sky that deal area damage. Baby dragons hatch cute, hungry and ready for a barbeque.",
"id": 26000015,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "prince",
"name": "Prince",
"sc_key": "Prince",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 7,
"description": "Don't let the little pony fool you. Once the Prince gets a running start, you WILL be trampled. Deals double damage once he gets charging.",
"id": 26000016,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "wizard",
"name": "Wizard",
"sc_key": "Wizard",
"elixir": 5,
"type": "Troop",
"rarity": "Rare",
"arena": 4,
"description": "The most awesome man to ever set foot in the Arena, the Wizard will blow you away with his handsomeness... and/or fireballs.",
"id": 26000017,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "mini-pekka",
"name": "Mini P.E.K.K.A",
"sc_key": "MiniPekka",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 0,
"description": "The Arena is a certified butterfly-free zone. No distractions for P.E.K.K.A, only destruction.",
"id": 26000018,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "spear-goblins",
"name": "Spear Goblins",
"sc_key": "SpearGoblins",
"elixir": 2,
"type": "Troop",
"rarity": "Common",
"arena": 1,
"description": "Three unarmored ranged attackers. Who the heck taught these guys to throw spears!? Who thought that was a good idea?!",
"id": 26000019,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "giant-skeleton",
"name": "Giant Skeleton",
"sc_key": "GiantSkeleton",
"elixir": 6,
"type": "Troop",
"rarity": "Epic",
"arena": 8,
"description": "The bigger the skeleton, the bigger the bomb. Carries a bomb that blows up when the Giant Skeleton dies.",
"id": 26000020,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "hog-rider",
"name": "Hog Rider",
"sc_key": "HogRider",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 5,
"description": "Fast melee troop that targets buildings and can jump over the river. He followed the echoing call of \"Hog Riderrrrr\" all the way through the Arena doors.",
"id": 26000021,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "minion-horde",
"name": "Minion Horde",
"sc_key": "MinionHorde",
"elixir": 5,
"type": "Troop",
"rarity": "Common",
"arena": 10,
"description": "Six fast, unarmored flying attackers. Three's a crowd, six is a horde!",
"id": 26000022,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "ice-wizard",
"name": "Ice Wizard",
"sc_key": "IceWizard",
"elixir": 3,
"type": "Troop",
"rarity": "Legendary",
"arena": 12,
"description": "This chill caster throws ice shards that slow down enemies' movement and attack speed. Despite being freezing cold, he has a handlebar mustache that's too hot for TV.",
"id": 26000023,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "royal-giant",
"name": "Royal Giant",
"sc_key": "RoyalGiant",
"elixir": 6,
"type": "Troop",
"rarity": "Common",
"arena": 7,
"description": "Destroying enemy buildings with his massive cannon is his job; making a raggedy blond beard look good is his passion.",
"id": 26000024,
"evolved_spells_sc_key": "RoyalGiant_EV1",
"is_evolved": false
},
{
"key": "guards",
"name": "Guards",
"sc_key": "SkeletonWarriors",
"elixir": 3,
"type": "Troop",
"rarity": "Epic",
"arena": 6,
"description": "Three ruthless bone brothers with shields. Knock off their shields and all that's left are three ruthless bone brothers.",
"id": 26000025,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "princess",
"name": "Princess",
"sc_key": "Princess",
"elixir": 3,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "This stunning Princess shoots flaming arrows from long range. If you're feeling warm feelings towards her, it's probably because you're on fire.",
"id": 26000026,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "dark-prince",
"name": "Dark Prince",
"sc_key": "DarkPrince",
"elixir": 4,
"type": "Troop",
"rarity": "Epic",
"arena": 7,
"description": "The Dark Prince deals area damage and lets his spiked club do the talking for him - because when he does talk, it sounds like he has a bucket on his head.",
"id": 26000027,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "three-musketeers",
"name": "Three Musketeers",
"sc_key": "ThreeMusketeers",
"elixir": 9,
"type": "Troop",
"rarity": "Rare",
"arena": 7,
"description": "Trio of powerful, independent markswomen, fighting for justice and honor. Disrespecting them would not be just a mistake, it would be a cardinal sin!",
"id": 26000028,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "lava-hound",
"name": "Lava Hound",
"sc_key": "LavaHound",
"elixir": 7,
"type": "Troop",
"rarity": "Legendary",
"arena": 13,
"description": "The Lava Hound is a majestic flying beast that attacks buildings. The Lava Pups are less majestic angry babies that attack anything.",
"id": 26000029,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "ice-spirit",
"name": "Ice Spirit",
"sc_key": "IceSpirits",
"elixir": 1,
"type": "Troop",
"rarity": "Common",
"arena": 8,
"description": "Spawns one lively little Ice Spirit to freeze a group of enemies. Stay frosty.",
"id": 26000030,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "fire-spirit",
"name": "Fire Spirit",
"sc_key": "FireSpirits",
"elixir": 1,
"type": "Troop",
"rarity": "Common",
"arena": 4,
"description": "The Fire Spirit is on a kamikaze mission to give you a warm hug. It'd be adorable if it wasn't on fire.",
"id": 26000031,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "miner",
"name": "Miner",
"sc_key": "Miner",
"elixir": 3,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "The Miner can burrow his way underground and appear anywhere in the Arena. It's not magic, it's a shovel. A shovel that deals reduced damage to Crown Towers.",
"id": 26000032,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "sparky",
"name": "Sparky",
"sc_key": "ZapMachine",
"elixir": 6,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "Sparky slowly charges up, then unloads MASSIVE area damage. Overkill isn't in her vocabulary.",
"id": 26000033,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "bowler",
"name": "Bowler",
"sc_key": "Bowler",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 13,
"description": "This big blue dude digs the simple things in life - Dark Elixir drinks and throwing rocks. His massive boulders roll through their target, hitting everything behind for a strike!",
"id": 26000034,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "lumberjack",
"name": "Lumberjack",
"sc_key": "RageBarbarian",
"elixir": 4,
"type": "Troop",
"rarity": "Legendary",
"arena": 14,
"description": "He chops trees by day and hunts The Log by night. His bottle of Rage spills everywhere when he's defeated.",
"id": 26000035,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "battle-ram",
"name": "Battle Ram",
"sc_key": "BattleRam",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 3,
"description": "Two Barbarians holding a big log charge at the nearest building, dealing significant damage if they connect; then they go to town with their swords!",
"id": 26000036,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "inferno-dragon",
"name": "Inferno Dragon",
"sc_key": "InfernoDragon",
"elixir": 4,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "Shoots a focused beam of fire that increases in damage over time. Wears a helmet because flying can be dangerous.",
"id": 26000037,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "ice-golem",
"name": "Ice Golem",
"sc_key": "IceGolemite",
"elixir": 2,
"type": "Troop",
"rarity": "Rare",
"arena": 8,
"description": "He's tough, targets buildings and explodes when destroyed, slowing nearby enemies. Made entirely out of ice... or is he?! Yes.",
"id": 26000038,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "mega-minion",
"name": "Mega Minion",
"sc_key": "MegaMinion",
"elixir": 3,
"type": "Troop",
"rarity": "Rare",
"arena": 3,
"description": "Flying, armored and powerful. What could be its weakness?! Cupcakes.",
"id": 26000039,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "dart-goblin",
"name": "Dart Goblin",
"sc_key": "BlowdartGoblin",
"elixir": 3,
"type": "Troop",
"rarity": "Rare",
"arena": 9,
"description": "Runs fast, shoots far and chews gum. How does he blow darts with a mouthful of Double Trouble Gum? Years of didgeridoo lessons.",
"id": 26000040,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "goblin-gang",
"name": "Goblin Gang",
"sc_key": "GoblinGang",
"elixir": 3,
"type": "Troop",
"rarity": "Common",
"arena": 9,
"description": "Spawns six Goblins - three with knives, three with spears - at a discounted Elixir cost. It's like a Goblin Value Pack!",
"id": 26000041,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "electro-wizard",
"name": "Electro Wizard",
"sc_key": "ElectroWizard",
"elixir": 4,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "He lands with a \"POW!\", stuns nearby enemies and shoots lightning with both hands! What a show off.",
"id": 26000042,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "elite-barbarians",
"name": "Elite Barbarians",
"sc_key": "AngryBarbarians",
"elixir": 6,
"type": "Troop",
"rarity": "Common",
"arena": 10,
"description": "Spawns a pair of leveled up Barbarians. They're like regular Barbarians, only harder, better, faster and stronger.",
"id": 26000043,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "hunter",
"name": "Hunter",
"sc_key": "Hunter",
"elixir": 4,
"type": "Troop",
"rarity": "Epic",
"arena": 10,
"description": "He deals BIG damage up close - not so much at range. What he lacks in accuracy, he makes up for with his impressively bushy eyebrows.",
"id": 26000044,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "executioner",
"name": "Executioner",
"sc_key": "AxeMan",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 14,
"description": "He throws his axe like a boomerang, striking all enemies on the way out AND back. It's a miracle he doesn't lose an arm.",
"id": 26000045,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "bandit",
"name": "Bandit",
"sc_key": "Assassin",
"elixir": 3,
"type": "Troop",
"rarity": "Legendary",
"arena": 13,
"description": "The Bandit dashes to her target and delivers an extra big hit! While dashing, she can't be touched. The mask keeps her identity safe, and gives her bonus cool points!",
"id": 26000046,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "royal-recruits",
"name": "Royal Recruits",
"sc_key": "RoyalRecruits",
"elixir": 7,
"type": "Troop",
"rarity": "Common",
"arena": 7,
"description": "Deploys a line of recruits armed with spears, shields and wooden buckets. They dream of ponies and one day wearing metal buckets.",
"id": 26000047,
"evolved_spells_sc_key": "RoyalRecruits_EV1",
"is_evolved": false
},
{
"key": "night-witch",
"name": "Night Witch",
"sc_key": "DarkWitch",
"elixir": 4,
"type": "Troop",
"rarity": "Legendary",
"arena": 14,
"description": "Summons Bats to do her bidding! If you get too close, she's not afraid of pitching in with her mean-looking battle staff.",
"id": 26000048,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "bats",
"name": "Bats",
"sc_key": "Bats",
"elixir": 2,
"type": "Troop",
"rarity": "Common",
"arena": 5,
"description": "Spawns a handful of tiny flying creatures. Think of them as sweet, purple... balls of DESTRUCTION!",
"id": 26000049,
"evolved_spells_sc_key": "Bats_EV1",
"is_evolved": false
},
{
"key": "royal-ghost",
"name": "Royal Ghost",
"sc_key": "Ghost",
"elixir": 3,
"type": "Troop",
"rarity": "Legendary",
"arena": 12,
"description": "He drifts invisibly through the Arena until he's startled by an enemy... then he attacks! Then he's invisible again! Zzzz.",
"id": 26000050,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "ram-rider",
"name": "Ram Rider",
"sc_key": "RamRider",
"elixir": 5,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "Together they charge through the Arena; snaring enemies, knocking down towers ... and chewing grass!?",
"id": 26000051,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "zappies",
"name": "Zappies",
"sc_key": "MiniSparkys",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 10,
"description": "Spawns a pack of miniature Zap machines. Who controls them...? Only the Master Builder knows.",
"id": 26000052,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "rascals",
"name": "Rascals",
"sc_key": "Rascals",
"elixir": 5,
"type": "Troop",
"rarity": "Common",
"arena": 13,
"description": "Spawns a mischievous trio of Rascals! The boy takes the lead, while the girls pelt enemies from behind... with slingshots full of Double Trouble Gum!",
"id": 26000053,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "cannon-cart",
"name": "Cannon Cart",
"sc_key": "MovingCannon",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 15,
"description": "A Cannon on wheels?! Bet they won't see that coming! Once you break its shield, it becomes a Cannon not on wheels.",
"id": 26000054,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "mega-knight",
"name": "Mega Knight",
"sc_key": "MegaKnight",
"elixir": 7,
"type": "Troop",
"rarity": "Legendary",
"arena": 11,
"description": "He lands with the force of 1,000 mustaches, then jumps from one foe to the next dealing huge area damage. Stand aside!",
"id": 26000055,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "skeleton-barrel",
"name": "Skeleton Barrel",
"sc_key": "SkeletonBalloon",
"elixir": 3,
"type": "Troop",
"rarity": "Common",
"arena": 9,
"description": "It's a Skeleton party in the sky, until all the balloons pop... then it's a Skeleton party on the ground!",
"id": 26000056,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "flying-machine",
"name": "Flying Machine",
"sc_key": "DartBarrell",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 5,
"description": "The Master Builder has sent his first contraption to the Arena! It's a fast and fun flying machine, but fragile!",
"id": 26000057,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "wall-breakers",
"name": "Wall Breakers",
"sc_key": "Wallbreakers",
"elixir": 2,
"type": "Troop",
"rarity": "Epic",
"arena": 12,
"description": "A daring duo of dangerous dive bombers. Nothing warms a Wall Breaker's cold and undead heart like blowing up buildings.",
"id": 26000058,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "royal-hogs",
"name": "Royal Hogs",
"sc_key": "RoyalHogs",
"elixir": 5,
"type": "Troop",
"rarity": "Rare",
"arena": 7,
"description": "The King's personal pets are loose! They love to chomp on apples and towers alike - who let the hogs out?!",
"id": 26000059,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "goblin-giant",
"name": "Goblin Giant",
"sc_key": "GoblinGiant",
"elixir": 6,
"type": "Troop",
"rarity": "Epic",
"arena": 9,
"description": "This jolly green Goblin Giant stomps towards enemy buildings. He carries two Spear Goblins everywhere he goes. It's a weird but functional arrangement.",
"id": 26000060,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "fisherman",
"name": "Fisherman",
"sc_key": "Fisherman",
"elixir": 3,
"type": "Troop",
"rarity": "Legendary",
"arena": 15,
"description": "His Ranged Attack can pull enemies towards him, and pull himself to enemy buildings. He's also mastered the ancient art of 'Fish Slapping'.",
"id": 26000061,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "magic-archer",
"name": "Magic Archer",
"sc_key": "EliteArcher",
"elixir": 4,
"type": "Troop",
"rarity": "Legendary",
"arena": 13,
"description": "Not quite a Wizard, nor an Archer - he shoots a magic arrow that passes through and damages all enemies in its path. It's not a trick, it's magic!",
"id": 26000062,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "electro-dragon",
"name": "Electro Dragon",
"sc_key": "ElectroDragon",
"elixir": 5,
"type": "Troop",
"rarity": "Epic",
"arena": 12,
"description": "Spits out bolts of electricity hitting up to three targets. Suffers from middle child syndrome to boot.",
"id": 26000063,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "firecracker",
"name": "Firecracker",
"sc_key": "Firecracker",
"elixir": 3,
"type": "Troop",
"rarity": "Common",
"arena": 12,
"description": "Shoots a firework that explodes upon impact, damaging the target and showering anything directly behind it with sparks. This is what happens when Archers get bored!",
"id": 26000064,
"evolved_spells_sc_key": "Firecracker_EV1",
"is_evolved": false
},
{
"key": "mighty-miner",
"name": "Mighty Miner",
"sc_key": "MightyMiner",
"elixir": 4,
"type": "Troop",
"rarity": "Champion",
"arena": 17,
"description": "Walk softly ... and carry a big drill!\n\nThis Champion deals increasing Damage to his target and can switch lanes to escape combat or change attack plans.\n\nThis makes him not only the mightiest, but also the sneakiest Miner in the Arena.",
"id": 26000065,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "super-witch",
"name": "Super Witch",
"sc_key": "SuperWitch",
"elixir": 6,
"type": "Troop",
"rarity": "Legendary",
"arena": 5,
"description": "Summons Skeletons, shoots destructo beams, has glowing pink eyes that unfortunately don't shoot lasers.",
"id": 26000066,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "elixir-golem",
"name": "Elixir Golem",
"sc_key": "ElixirGolem",
"elixir": 3,
"type": "Troop",
"rarity": "Rare",
"arena": 14,
"description": "Splits into two Elixir Golemites when destroyed, which split into two sentient Blobs when defeated. Each part of the Elixir Golem gives your opponent some Elixir when destroyed!",
"id": 26000067,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "battle-healer",
"name": "Battle Healer",
"sc_key": "BattleHealer",
"elixir": 4,
"type": "Troop",
"rarity": "Rare",
"arena": 8,
"description": "With each attack, she unleashes a powerful healing aura that restores Hitpoints to herself and friendly Troops. When she isn't attacking, she passively heals herself!",
"id": 26000068,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "skeleton-king",
"name": "Skeleton King",
"sc_key": "SkeletonKing",
"elixir": 4,
"type": "Troop",
"rarity": "Champion",
"arena": 16,
"description": "The King of the undead himself. He sometimes feels lonely (could be due to his non flattering features) and will summon friends to join him in the battle even after death. Tough guys have feelings too!",
"id": 26000069,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "super-lava-hound",
"name": "Super Lava Hound",
"sc_key": "SuperLavaHound",
"elixir": 8,
"type": "Troop",
"rarity": "Legendary",
"arena": 10,
"description": "The Lava Hound is a majestic flying beast that attacks buildings. The Lava Pups are less majestic angry babies that attack anything.",
"id": 26000070,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "super-magic-archer",
"name": "Super Magic Archer",
"sc_key": "SuperEliteArcher",
"elixir": 5,
"type": "Troop",
"rarity": "Legendary",
"arena": 13,
"description": "Not quite a Wizard, nor an Archer - he shoots a magic arrow that passes through and damages all enemies in its path. It's not a trick, it's magic!",
"id": 26000071,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "archer-queen",
"name": "Archer Queen",
"sc_key": "ArcherQueen",
"elixir": 5,
"type": "Troop",
"rarity": "Champion",
"arena": 17,
"description": "She is fast, deadly and hard to catch. Beware of her crossbow bolts and try not to blink - you might miss her!",
"id": 26000072,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "santa-hog-rider",
"name": "Santa Hog Rider",
"sc_key": "SuperHogRider",
"elixir": 5,
"type": "Troop",
"rarity": "Legendary",
"arena": 5,
"description": "Fast melee troop that targets buildings and can jump over the river. He followed the echoing call of \"Hog Riderrrrr\" all the way through the Arena doors.",
"id": 26000073,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "golden-knight",
"name": "Golden Knight",
"sc_key": "GoldenKnight",
"elixir": 4,
"type": "Troop",
"rarity": "Champion",
"arena": 16,
"description": "A warrior with luxurious hair and outstanding flexibility. Demonstrates his aerobics skills on demand.",
"id": 26000074,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "super-ice-golem",
"name": "Super Ice Golem",
"sc_key": "SuperIceGolemite",
"elixir": 4,
"type": "Troop",
"rarity": "Legendary",
"arena": 8,
"description": "He's tough, targets buildings and explodes when destroyed, slowing nearby enemies. Made entirely out of ice... or is he?! Yes.",
"id": 26000075,
"evolved_spells_sc_key": "",
"is_evolved": false
},
{
"key": "monk",
"name": "Monk",
"sc_key": "Monk",
"elixir": 5,
"type": "Troop",
"rarity": "Champion",
"arena": 18,
"description": "Monk has spent many isolated years perfecting a new style of combat.\n\nHe fires off a 3-hit combo, with the last blow dealing extra Damage and pushing enemies back!",
"id": 26000077,
"evolved_spells_sc_key": "",