From 4e6edb69e9a87f7f300af8fa79fea9060645cf2a Mon Sep 17 00:00:00 2001 From: marcins78 Date: Fri, 15 Mar 2013 17:39:17 +0000 Subject: [PATCH] "Dunlending Tribesman" --- .../lotro/cards/set20/dunland/Card20_005.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_005.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_005.java index 1ca95933d..d77b52d6a 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_005.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_005.java @@ -20,14 +20,15 @@ import java.util.List; /** * 3 * Dunlending Tribesman - * Dunland Minion • Man - * 9 1 3 - * When you play Dunlending Tribesman, you may discard a [Dunland] card from hand. If you do, Dunlending Tribesman - * is strength +3 until the regroup phase. + * Minion • Man + * 8 1 3 + * When you play this minion, you may discard a [Dunland] card from hand. If you do, this minion is strength +2 + * until the regroup phase. + * http://lotrtcg.org/coreset/dunland/dunlendingtribesman(r1).png */ public class Card20_005 extends AbstractMinion { public Card20_005() { - super(3, 9, 1, 3, Race.MAN, Culture.DUNLAND, "Dunlending Tribesman"); + super(3, 8, 1, 3, Race.MAN, Culture.DUNLAND, "Dunlending Tribesman"); } @Override @@ -39,7 +40,7 @@ public class Card20_005 extends AbstractMinion { new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 1, Culture.DUNLAND)); action.appendEffect( new AddUntilStartOfPhaseModifierEffect( - new StrengthModifier(self, self, 3), Phase.REGROUP)); + new StrengthModifier(self, self, 2), Phase.REGROUP)); return Collections.singletonList(action); } return null;