- "Gloin, Gimli's Father" can now pump itself (per card text).

This commit is contained in:
marcins78
2013-03-13 11:44:06 +00:00
parent da03c23876
commit 59112d9064
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
- "Goblin Patrol" now has a correct name (instead of Patroller) and gets a discount for Goblin only, not just any card
(per card text).
- "Lurtz, Champion of the White Hand" now spots only Hobbit companions, instead of just Hobbits (per card text).
- "Gloin, Gimli's Father" can now pump itself (per card text).
<b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.

View File

@@ -57,7 +57,7 @@ public class Card20_057 extends AbstractCompanion {
action.appendCost(
new SelfExertEffect(action, self));
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, new CardMatchesEvaluator(2, 3, Filters.gimli), Filters.not(self), Race.DWARF));
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, new CardMatchesEvaluator(2, 3, Filters.gimli), Race.DWARF));
return Collections.singletonList(action);
}
return null;