-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcards.json
12585 lines (12585 loc) · 547 KB
/
cards.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"textc": "Sentinel.\nResponse: After Aragorn commits to a quest, spend 1 resource from his resource pool to ready him.",
"strength": 3,
"defense": 2,
"name": "Aragorn",
"setname": "Core Set",
"no": 1,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/aragorn-core.jpg",
"willpower": 2,
"hitpoints": 5,
"sphere": "1leadership",
"cost": 12,
"text": "Response: After Aragorn commits to a quest, spend 1 resource from his resource pool to ready him.",
"keywords": "Sentinel.",
"name_norm": "Aragorn",
"traits": "Dunedain. Noble. Ranger.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9001",
"Categories": "Readying, ",
"quantity": "1"
},
{
"textc": "\nResponse: After Theodred commits to a quest, choose a hero committed to that quest. Add 1 resource to that hero's resource pool.",
"strength": 2,
"defense": 1,
"name": "Th\u00e9odred",
"setname": "Core Set",
"no": 2,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/theodred-core.jpg",
"willpower": 1,
"hitpoints": 4,
"sphere": "1leadership",
"cost": 8,
"text": "Response: After Theodred commits to a quest, choose a hero committed to that quest. Add 1 resource to that hero's resource pool.",
"keywords": "",
"name_norm": "Theodred",
"traits": "Noble. Rohan. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9002",
"Categories": "Resource Acceleration, ",
"quantity": "1"
},
{
"textc": "\nResponse: After Gloin suffers damage, add 1 resource to his resource pool for each point of damage he just suffered.",
"strength": 2,
"defense": 1,
"name": "Gl\u00f3in",
"setname": "Core Set",
"no": 3,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/gloin-core.jpg",
"willpower": 2,
"hitpoints": 4,
"sphere": "1leadership",
"cost": 9,
"text": "Response: After Gloin suffers damage, add 1 resource to his resource pool for each point of damage he just suffered.",
"keywords": "",
"name_norm": "Gloin",
"traits": "Dwarf. Noble.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9003",
"Categories": "Resource Acceleration, ",
"quantity": "1"
},
{
"textc": "\nGimli gets +1 Attack for each damage token on him.",
"strength": 2,
"defense": 2,
"name": "Gimli",
"setname": "Core Set",
"no": 4,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/gimli-core.jpg",
"willpower": 2,
"hitpoints": 5,
"sphere": "2tactics",
"cost": 11,
"text": "Gimli gets +1 Attack for each damage token on him.",
"keywords": "",
"name_norm": "Gimli",
"traits": "Dwarf. Noble. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9004",
"Categories": "Attack Bonus, ",
"quantity": "1"
},
{
"textc": "Ranged.\nResponse: After Legolas participates in an attack that destroys an enemy, place 2 progress tokens on the current quest.",
"strength": 3,
"defense": 1,
"name": "Legolas",
"setname": "Core Set",
"no": 5,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/legolas-core.jpg",
"willpower": 1,
"hitpoints": 4,
"sphere": "2tactics",
"cost": 9,
"text": "Response: After Legolas participates in an attack that destroys an enemy, place 2 progress tokens on the current quest.",
"keywords": "Ranged.",
"name_norm": "Legolas",
"traits": "Noble. Silvan. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9005",
"Categories": "",
"quantity": "1"
},
{
"textc": "\nWhile Thalin is committed to a quest, deal 1 damage to each enemy as it is revealed by the encounter deck.",
"strength": 2,
"defense": 2,
"name": "Thalin",
"setname": "Core Set",
"no": 6,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/thalin-core.jpg",
"willpower": 1,
"hitpoints": 4,
"sphere": "2tactics",
"cost": 9,
"text": "While Thalin is committed to a quest, deal 1 damage to each enemy as it is revealed by the encounter deck.",
"keywords": "",
"name_norm": "Thalin",
"traits": "Dwarf. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9006",
"Categories": "Encounter Control, Direct Damage, ",
"quantity": "1"
},
{
"textc": "\nAction: Discard 1 card from your hand to give Eowyn +1 Willpower until the end of the phase. This effect may be triggered by each player once each round.",
"strength": 1,
"defense": 1,
"name": "\u00c9owyn",
"setname": "Core Set",
"no": 7,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/eowyn-core.jpg",
"willpower": 4,
"hitpoints": 3,
"sphere": "3spirit",
"cost": 9,
"text": "Action: Discard 1 card from your hand to give Eowyn +1 Willpower until the end of the phase. This effect may be triggered by each player once each round.",
"keywords": "",
"name_norm": "Eowyn",
"traits": "Noble. Rohan.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9007",
"Categories": "Discard from Hand, Willpower Bonus, ",
"quantity": "1"
},
{
"textc": "\nResponse: Exhaust Eleanor to cancel the \"when revealed\" effects of a treachery card just revealed by the encounter deck. Then, discard that card, and replace it with the next card from the encounter deck.",
"strength": 1,
"defense": 2,
"name": "Eleanor",
"setname": "Core Set",
"no": 8,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/eleanor-core.jpg",
"willpower": 1,
"hitpoints": 3,
"sphere": "3spirit",
"cost": 7,
"text": "Response: Exhaust Eleanor to cancel the \"when revealed\" effects of a treachery card just revealed by the encounter deck. Then, discard that card, and replace it with the next card from the encounter deck.",
"keywords": "",
"name_norm": "Eleanor",
"traits": "Gondor. Noble.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9008",
"Categories": "Encounter Control, ",
"quantity": "1"
},
{
"textc": "\nDunhere can target enemies in the staging area when he attacks alone. When doing so, he gets +1 Attack.",
"strength": 2,
"defense": 1,
"name": "Dunhere",
"setname": "Core Set",
"no": 9,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/dunhere-core.jpg",
"willpower": 1,
"hitpoints": 4,
"sphere": "3spirit",
"cost": 8,
"text": "Dunhere can target enemies in the staging area when he attacks alone. When doing so, he gets +1 Attack.",
"keywords": "",
"name_norm": "Dunhere",
"traits": "Rohan. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9009",
"Categories": "Staging Area Attack, Attack Bonus, ",
"quantity": "1"
},
{
"textc": "\nAction: Exhaust Denethor to look at the top card of the encounter deck. You may move that card to the bottom of the deck.",
"strength": 1,
"defense": 3,
"name": "Denethor",
"setname": "Core Set",
"no": 10,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/denethor-core.jpg",
"willpower": 1,
"hitpoints": 3,
"sphere": "4lore",
"cost": 8,
"text": "Action: Exhaust Denethor to look at the top card of the encounter deck. You may move that card to the bottom of the deck.",
"keywords": "",
"name_norm": "Denethor",
"traits": "Gondor. Noble. Steward.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9010",
"Categories": "Encounter Control, Encounter Scrying, ",
"quantity": "1"
},
{
"textc": "\nAction: Pay 1 resource from Glorfindel's pool to heal 1 damage on any character. (Limit once per round.)",
"strength": 3,
"defense": 1,
"name": "Glorfindel",
"setname": "Core Set",
"no": 11,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/glorfindel-core.jpg",
"willpower": 3,
"hitpoints": 5,
"sphere": "4lore",
"cost": 12,
"text": "Action: Pay 1 resource from Glorfindel's pool to heal 1 damage on any character. (Limit once per round.)",
"keywords": "",
"name_norm": "Glorfindel",
"traits": "Noble. Noldor. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9011",
"Categories": "Healing, ",
"quantity": "1"
},
{
"textc": "\nAction: Exhaust Beravor to choose a player. That player draws 2 cards. Limit once per round.",
"strength": 2,
"defense": 2,
"name": "Beravor",
"setname": "Core Set",
"no": 12,
"type": "1hero",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/beravor-core.jpg",
"willpower": 2,
"hitpoints": 4,
"sphere": "4lore",
"cost": 10,
"text": "Action: Exhaust Beravor to choose a player. That player draws 2 cards. Limit once per round.",
"keywords": "",
"name_norm": "Beravor",
"traits": "Dunedain. Ranger.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9012",
"Categories": "Card Draw, ",
"quantity": "1"
},
{
"textc": "\n",
"strength": 1,
"defense": 0,
"name": "Guard of the Citadel",
"setname": "Core Set",
"no": 13,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9013",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/guard-of-the-citadel-core.jpg",
"willpower": 1,
"sphere": "1leadership",
"cost": 2,
"text": "",
"keywords": "",
"name_norm": "Guard of the Citadel",
"traits": "Gondor. Warrior.",
"exp": "core",
"hitpoints": 2,
"type": "2ally",
"Categories": "",
"quantity": "3"
},
{
"textc": "\nAction: Exhaust Faramir to choose a player. Each character controlled by that player gets +1 Willpower until the end of the phase.",
"strength": 1,
"defense": 2,
"name": "Faramir",
"setname": "Core Set",
"no": 14,
"type": "2ally",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/faramir-core.jpg",
"willpower": 2,
"hitpoints": 3,
"sphere": "1leadership",
"cost": 4,
"text": "Action: Exhaust Faramir to choose a player. Each character controlled by that player gets +1 Willpower until the end of the phase.",
"keywords": "",
"name_norm": "Faramir",
"traits": "Gondor. Noble. Ranger.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9014",
"Categories": "Willpower Bonus, ",
"quantity": "2"
},
{
"textc": "\nResponse: After Son of Arnor enters play, choose an enemy card in the staging area or currently engaged with another player. Engage that enemy.",
"strength": 2,
"defense": 0,
"name": "Son of Arnor",
"setname": "Core Set",
"no": 15,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9015",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/son-of-arnor-core.jpg",
"willpower": 0,
"sphere": "1leadership",
"cost": 3,
"text": "Response: After Son of Arnor enters play, choose an enemy card in the staging area or currently engaged with another player. Engage that enemy.",
"keywords": "",
"name_norm": "Son of Arnor",
"traits": "Dunedain.",
"exp": "core",
"hitpoints": 2,
"type": "2ally",
"Categories": "Staging Area Control, ",
"quantity": "2"
},
{
"textc": "\nResponse: After Snowbourn Scout enters play, choose a location. Place 1 progress token on that location.",
"strength": 0,
"defense": 1,
"name": "Snowbourn Scout",
"setname": "Core Set",
"no": 16,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9016",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/snowbourn-scout-core.jpg",
"willpower": 0,
"sphere": "1leadership",
"cost": 1,
"text": "Response: After Snowbourn Scout enters play, choose a location. Place 1 progress token on that location.",
"keywords": "",
"name_norm": "Snowbourn Scout",
"traits": "Rohan. Scout.",
"exp": "core",
"hitpoints": 1,
"type": "2ally",
"Categories": "Location Control, ",
"quantity": "3"
},
{
"textc": "Ranged.\n",
"strength": 2,
"defense": 0,
"name": "Silverlode Archer",
"setname": "Core Set",
"no": 17,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9017",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/silverlode-archer-core.jpg",
"willpower": 1,
"sphere": "1leadership",
"cost": 3,
"text": "",
"keywords": "Ranged.",
"name_norm": "Silverlode Archer",
"traits": "Archer. Silvan.",
"exp": "core",
"hitpoints": 1,
"type": "2ally",
"Categories": "",
"quantity": "2"
},
{
"textc": "\nResponse: After Longbeard Orc Slayer enters play, deal 1 damage to each Orc enemy in play.",
"strength": 2,
"defense": 1,
"name": "Longbeard Orc Slayer",
"setname": "Core Set",
"no": 18,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9018",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/longbeard-orc-slayer-core.jpg",
"willpower": 0,
"sphere": "1leadership",
"cost": 4,
"text": "Response: After Longbeard Orc Slayer enters play, deal 1 damage to each Orc enemy in play.",
"keywords": "",
"name_norm": "Longbeard Orc Slayer",
"traits": "Dwarf. Warrior.",
"exp": "core",
"hitpoints": 3,
"type": "2ally",
"Categories": "Direct Damage, ",
"quantity": "2"
},
{
"textc": "\nResponse: After a Dwarf hero you control leaves play, put Brok Ironfist into play from your hand.",
"strength": 2,
"defense": 1,
"name": "Brok Ironfist",
"setname": "Core Set",
"no": 19,
"type": "2ally",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/brok-ironfist-core.jpg",
"willpower": 2,
"hitpoints": 4,
"sphere": "1leadership",
"cost": 6,
"text": "Response: After a Dwarf hero you control leaves play, put Brok Ironfist into play from your hand.",
"keywords": "",
"name_norm": "Brok Ironfist",
"traits": "Dwarf. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9019",
"Categories": "Leaves Play, Mustering, ",
"quantity": "1"
},
{
"textc": "\nAction: Choose and ready 1 ally card.",
"name": "Ever Vigilant",
"setname": "Core Set",
"no": 20,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9020",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/ever-vigilant-core.jpg",
"sphere": "1leadership",
"cost": 1,
"text": "Action: Choose and ready 1 ally card.",
"traits": "",
"name_norm": "Ever Vigilant",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Readying, ",
"quantity": "2"
},
{
"textc": "\nAction: Exhaust 1 hero you control to choose and ready a different hero.",
"name": "Common Cause",
"setname": "Core Set",
"no": 21,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9021",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/common-cause-core.jpg",
"sphere": "1leadership",
"cost": 0,
"text": "Action: Exhaust 1 hero you control to choose and ready a different hero.",
"traits": "",
"name_norm": "Common Cause",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Readying, ",
"quantity": "2"
},
{
"textc": "\nAction: Until the end of the phase, all characters get +1 Attack. All Gondor characters also get +1 Defense until the end of the phase.",
"name": "For Gondor!",
"setname": "Core Set",
"no": 22,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9022",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/for-gondor!-core.jpg",
"sphere": "1leadership",
"cost": 2,
"text": "Action: Until the end of the phase, all characters get +1 Attack. All Gondor characters also get +1 Defense until the end of the phase.",
"traits": "",
"name_norm": "For Gondor!",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Attack Bonus, Defense Bonus, ",
"quantity": "2"
},
{
"textc": "\nAction: Put 1 ally card into play from your hand. At the end of the phase, if that ally is still in play, return it to your hand.",
"name": "Sneak Attack",
"setname": "Core Set",
"no": 23,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9023",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/sneak-attack-core.jpg",
"sphere": "1leadership",
"cost": 1,
"text": "Action: Put 1 ally card into play from your hand. At the end of the phase, if that ally is still in play, return it to your hand.",
"traits": "",
"name_norm": "Sneak Attack",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Mustering, Recursion, ",
"quantity": "2"
},
{
"textc": "\nResponse: After an ally card leaves play, that card's controller draws 2 cards.",
"name": "Valiant Sacrifice",
"setname": "Core Set",
"no": 24,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9024",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/valiant-sacrifice-core.jpg",
"sphere": "1leadership",
"cost": 1,
"text": "Response: After an ally card leaves play, that card's controller draws 2 cards.",
"traits": "",
"name_norm": "Valiant Sacrifice",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Card Draw, Leaves Play, ",
"quantity": "2"
},
{
"textc": "\nAction: Ready all character cards in play.",
"name": "Grim Resolve",
"setname": "Core Set",
"no": 25,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9025",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/grim-resolve-core.jpg",
"sphere": "1leadership",
"cost": 5,
"text": "Action: Ready all character cards in play.",
"traits": "",
"name_norm": "Grim Resolve",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Readying, ",
"quantity": "1"
},
{
"textc": "Attach to a hero.\nAttached hero gains the Gondor trait.\n\nAction: Exhaust Steward of Gondor to add 2 resources to attached hero's resource pool.",
"name": "Steward of Gondor",
"setname": "Core Set",
"no": 26,
"type": "3attachment",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/steward-of-gondor-core.jpg",
"sphere": "1leadership",
"cost": 2,
"text": "Attached hero gains the Gondor trait.\n\nAction: Exhaust Steward of Gondor to add 2 resources to attached hero's resource pool.",
"keywords": "Attach to a hero.",
"name_norm": "Steward of Gondor",
"traits": "Gondor. Title.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9026",
"Categories": "Resource Acceleration, ",
"quantity": "2"
},
{
"textc": "Attach to a hero. Restricted.\nAttached hero gains +2 Willpower.\n\nIf attached hero is Aragorn, he also gains a Spirit resource icon.",
"name": "Celebr\u00edan's Stone",
"setname": "Core Set",
"no": 27,
"type": "3attachment",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/celebrian's-stone-core.jpg",
"sphere": "1leadership",
"cost": 2,
"text": "Attached hero gains +2 Willpower.\n\nIf attached hero is Aragorn, he also gains a Spirit resource icon.",
"keywords": "Attach to a hero. Restricted.",
"name_norm": "Celebrian's Stone",
"traits": "Artifact. Item.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9027",
"Categories": "Resource Smoothing, Willpower Bonus, ",
"quantity": "1"
},
{
"textc": "\n",
"strength": 2,
"defense": 1,
"name": "Veteran Axehand",
"setname": "Core Set",
"no": 28,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9028",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/veteran-axehand-core.jpg",
"willpower": 0,
"sphere": "2tactics",
"cost": 2,
"text": "",
"keywords": "",
"name_norm": "Veteran Axehand",
"traits": "Dwarf. Warrior.",
"exp": "core",
"hitpoints": 2,
"type": "2ally",
"Categories": "",
"quantity": "3"
},
{
"textc": "Sentinel.\nResponse: After Gondorian Spearman is declared as a defender, deal 1 damage to the attacking enemy.",
"strength": 1,
"defense": 1,
"name": "Gondorian Spearman",
"setname": "Core Set",
"no": 29,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9029",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/gondorian-spearman-core.jpg",
"willpower": 0,
"sphere": "2tactics",
"cost": 2,
"text": "Response: After Gondorian Spearman is declared as a defender, deal 1 damage to the attacking enemy.",
"keywords": "Sentinel.",
"name_norm": "Gondorian Spearman",
"traits": "Gondor. Warrior.",
"exp": "core",
"hitpoints": 1,
"type": "2ally",
"Categories": "Direct Damage, ",
"quantity": "3"
},
{
"textc": "Ranged.\n",
"strength": 2,
"defense": 1,
"name": "Horseback Archer",
"setname": "Core Set",
"no": 30,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9030",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/horseback-archer-core.jpg",
"willpower": 0,
"sphere": "2tactics",
"cost": 3,
"text": "",
"keywords": "Ranged.",
"name_norm": "Horseback Archer",
"traits": "Rohan. Archer.",
"exp": "core",
"hitpoints": 2,
"type": "2ally",
"Categories": "",
"quantity": "2"
},
{
"textc": "\nAction: Beorn gains +5 Attack until the end of the phase. At the end of the phase in which you trigger this effect, shuffle Beorn back into your deck. (Limit once per round.)",
"strength": 3,
"defense": 3,
"name": "Beorn",
"setname": "Core Set",
"no": 31,
"type": "2ally",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/beorn-core.jpg",
"willpower": 1,
"hitpoints": 6,
"sphere": "2tactics",
"cost": 6,
"text": "Action: Beorn gains +5 Attack until the end of the phase. At the end of the phase in which you trigger this effect, shuffle Beorn back into your deck. (Limit once per round.)",
"keywords": "",
"name_norm": "Beorn",
"traits": "Beorning. Warrior.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9031",
"Categories": "Attack Bonus, ",
"quantity": "1"
},
{
"textc": "\nAction: Choose a character. Until the end of the phase, that character gains +1 Attack and +1 Defense.",
"name": "Blade Mastery",
"setname": "Core Set",
"no": 32,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9032",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/blade-mastery-core.jpg",
"sphere": "2tactics",
"cost": 1,
"text": "Action: Choose a character. Until the end of the phase, that character gains +1 Attack and +1 Defense.",
"traits": "",
"name_norm": "Blade Mastery",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Attack Bonus, Defense Bonus, ",
"quantity": "3"
},
{
"textc": "\nAction: Exhaust a character you control with the ranged keyword to choose a player. Deal 1 damage to each enemy engaged with that player.",
"name": "Rain of Arrows",
"setname": "Core Set",
"no": 33,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9033",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/rain-of-arrows-core.jpg",
"sphere": "2tactics",
"cost": 1,
"text": "Action: Exhaust a character you control with the ranged keyword to choose a player. Deal 1 damage to each enemy engaged with that player.",
"traits": "",
"name_norm": "Rain of Arrows",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Direct Damage, ",
"quantity": "2"
},
{
"textc": "\nCombat Action: Choose an enemy engaged with a player. That enemy cannot attack that player this phase.",
"name": "Feint",
"setname": "Core Set",
"no": 34,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9034",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/feint-core.jpg",
"sphere": "2tactics",
"cost": 1,
"text": "Combat Action: Choose an enemy engaged with a player. That enemy cannot attack that player this phase.",
"traits": "",
"name_norm": "Feint",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Combat Control, ",
"quantity": "2"
},
{
"textc": "\nAction: Exhaust a character you control to immediately declare it as an attacker (and resolve its attack) against any eligible enemy target.",
"name": "Quick Strike",
"setname": "Core Set",
"no": 35,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9035",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/quick-strike-core.jpg",
"sphere": "2tactics",
"cost": 1,
"text": "Action: Exhaust a character you control to immediately declare it as an attacker (and resolve its attack) against any eligible enemy target.",
"traits": "",
"name_norm": "Quick Strike",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "",
"quantity": "2"
},
{
"textc": "\nYou must use resources from 3 different heroes' pools to pay for this card.\n\nAction: Choose a player. That player's engaged enemies cannot attack that player this phase.",
"name": "Thicket of Spears",
"setname": "Core Set",
"no": 36,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9036",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/thicket-of-spears-core.jpg",
"sphere": "2tactics",
"cost": 3,
"text": "You must use resources from 3 different heroes' pools to pay for this card.\n\nAction: Choose a player. That player's engaged enemies cannot attack that player this phase.",
"traits": "",
"name_norm": "Thicket of Spears",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Combat Control, ",
"quantity": "2"
},
{
"textc": "\nResponse: After a character is declared as a defender, deal 2 damage to the attacking enemy.",
"name": "Swift Strike",
"setname": "Core Set",
"no": 37,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9037",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/swift-strike-core.jpg",
"sphere": "2tactics",
"cost": 2,
"text": "Response: After a character is declared as a defender, deal 2 damage to the attacking enemy.",
"traits": "",
"name_norm": "Swift Strike",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Direct Damage, ",
"quantity": "1"
},
{
"textc": "\nAction: Choose a player. That player may declare any number of his eligible characters as defenders against each enemy attacking him this phase.",
"name": "Stand Together",
"setname": "Core Set",
"no": 38,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9038",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/stand-together-core.jpg",
"sphere": "2tactics",
"cost": 0,
"text": "Action: Choose a player. That player may declare any number of his eligible characters as defenders against each enemy attacking him this phase.",
"traits": "",
"name_norm": "Stand Together",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "",
"quantity": "1"
},
{
"textc": "Attach to a hero. Restricted.\nAttached hero gets +1 Attack when attacking an Orc .\n\nResponse: After attached hero attacks and destroys an enemy, place 1 progress token on the current quest.",
"name": "Blade of Gondolin",
"setname": "Core Set",
"no": 39,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9039",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/blade-of-gondolin-core.jpg",
"sphere": "2tactics",
"cost": 1,
"text": "Attached hero gets +1 Attack when attacking an Orc .\n\nResponse: After attached hero attacks and destroys an enemy, place 1 progress token on the current quest.",
"keywords": "Attach to a hero. Restricted.",
"name_norm": "Blade of Gondolin",
"traits": "Item. Weapon.",
"exp": "core",
"type": "3attachment",
"Categories": "Attack Bonus, ",
"quantity": "2"
},
{
"textc": "Attach to a hero. Restricted.\nAttached hero gets +4 Hit Points.",
"name": "Citadel Plate",
"setname": "Core Set",
"no": 40,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9040",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/citadel-plate-core.jpg",
"sphere": "2tactics",
"cost": 4,
"text": "Attached hero gets +4 Hit Points.",
"keywords": "Attach to a hero. Restricted.",
"name_norm": "Citadel Plate",
"traits": "Item. Armor.",
"exp": "core",
"type": "3attachment",
"Categories": "Hit Point Bonus, ",
"quantity": "2"
},
{
"textc": "Attach to a hero. Restricted.\nAttached hero gains +1 Attack. (+2 Attack instead if attached hero is a Dwarf.)",
"name": "Dwarven Axe",
"setname": "Core Set",
"no": 41,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9041",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/dwarven-axe-core.jpg",
"sphere": "2tactics",
"cost": 2,
"text": "Attached hero gains +1 Attack. (+2 Attack instead if attached hero is a Dwarf.)",
"keywords": "Attach to a hero. Restricted.",
"name_norm": "Dwarven Axe",
"traits": "Item. Weapon.",
"exp": "core",
"type": "3attachment",
"Categories": "Attack Bonus, ",
"quantity": "2"
},
{
"textc": "Attach to a hero. Restricted.\nResponse: After a character leaves play, add 1 resource to attached hero's pool.",
"name": "Horn of Gondor",
"setname": "Core Set",
"no": 42,
"type": "3attachment",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/horn-of-gondor-core.jpg",
"sphere": "2tactics",
"cost": 1,
"text": "Response: After a character leaves play, add 1 resource to attached hero's pool.",
"keywords": "Attach to a hero. Restricted.",
"name_norm": "Horn of Gondor",
"traits": "Item. Artifact.",
"exp": "core",
"unique": true,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9042",
"Categories": "Leaves Play, Resource Acceleration, ",
"quantity": "1"
},
{
"textc": "\nAction: Reduce your threat by 3 to give control of Wandering Took to another player. Raise that player's threat by 3.",
"strength": 1,
"defense": 1,
"name": "Wandering Took",
"setname": "Core Set",
"no": 43,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9043",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/wandering-took-core.jpg",
"willpower": 1,
"sphere": "3spirit",
"cost": 2,
"text": "Action: Reduce your threat by 3 to give control of Wandering Took to another player. Raise that player's threat by 3.",
"keywords": "",
"name_norm": "Wandering Took",
"traits": "Hobbit.",
"exp": "core",
"hitpoints": 2,
"type": "2ally",
"Categories": "Threat Control, ",
"quantity": "2"
},
{
"textc": "\nResponse: After L\u00f3rien Guide commits to a quest, place 1 progress token on the active location.",
"strength": 1,
"defense": 0,
"name": "L\u00f3rien Guide",
"setname": "Core Set",
"no": 44,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9044",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/lorien-guide-core.jpg",
"willpower": 1,
"sphere": "3spirit",
"cost": 3,
"text": "Response: After L\u00f3rien Guide commits to a quest, place 1 progress token on the active location.",
"keywords": "",
"name_norm": "Lorien Guide",
"traits": "Silvan. Scout.",
"exp": "core",
"hitpoints": 2,
"type": "2ally",
"Categories": "Location Control, ",
"quantity": "3"
},
{
"textc": "\nResponse: After Northern Tracker commits to a quest, place 1 progress token on each location in the staging area.",
"strength": 2,
"defense": 2,
"name": "Northern Tracker",
"setname": "Core Set",
"no": 45,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9045",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/northern-tracker-core.jpg",
"willpower": 1,
"sphere": "3spirit",
"cost": 4,
"text": "Response: After Northern Tracker commits to a quest, place 1 progress token on each location in the staging area.",
"keywords": "",
"name_norm": "Northern Tracker",
"traits": "Dunedain. Ranger.",
"exp": "core",
"hitpoints": 3,
"type": "2ally",
"Categories": "Location Control, Staging Area Control, ",
"quantity": "2"
},
{
"textc": "\nAction: Reduce one player's threat by 6, or reduce each player's threat by 2.",
"name": "The Galadhrim's Greeting",
"setname": "Core Set",
"no": 46,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9046",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/the-galadhrim's-greeting-core.jpg",
"sphere": "3spirit",
"cost": 3,
"text": "Action: Reduce one player's threat by 6, or reduce each player's threat by 2.",
"traits": "",
"name_norm": "The Galadhrim's Greeting",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Threat Control, ",
"quantity": "2"
},
{
"textc": "\nResponse: After you travel to a location, exhaust a Spirit character to place 2 progress tokens on that location.",
"name": "Strength of Will",
"setname": "Core Set",
"no": 47,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9047",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/strength-of-will-core.jpg",
"sphere": "3spirit",
"cost": 0,
"text": "Response: After you travel to a location, exhaust a Spirit character to place 2 progress tokens on that location.",
"traits": "",
"name_norm": "Strength of Will",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Location Control, ",
"quantity": "2"
},
{
"textc": "\nResponse: Cancel a shadow effect just triggered during combat.",
"name": "Hasty Stroke",
"setname": "Core Set",
"no": 48,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9048",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/hasty-stroke-core.jpg",
"sphere": "3spirit",
"cost": 1,
"text": "Response: Cancel a shadow effect just triggered during combat.",
"traits": "",
"name_norm": "Hasty Stroke",
"keywords": "",
"exp": "core",
"type": "4event",
"Categories": "Shadow Control, ",
"quantity": "2"
},
{
"textc": "\nAction: Choose a player. Shuffle that player's discard pile back into his deck.",
"name": "Will of the West",
"setname": "Core Set",
"no": 49,
"octgn": "51223bd0-ffd1-11df-a976-0801200c9049",
"img": "http://www.cardgamedb.com/forums/uploads/lotr/will-of-the-west-core.jpg",
"sphere": "3spirit",
"cost": 1,
"text": "Action: Choose a player. Shuffle that player's discard pile back into his deck.",
"traits": "",
"name_norm": "Will of the West",
"keywords": "",