"Dunlending Tribesman"
This commit is contained in:
@@ -20,14 +20,15 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* 3
|
* 3
|
||||||
* Dunlending Tribesman
|
* Dunlending Tribesman
|
||||||
* Dunland Minion • Man
|
* Minion • Man
|
||||||
* 9 1 3
|
* 8 1 3
|
||||||
* When you play Dunlending Tribesman, you may discard a [Dunland] card from hand. If you do, Dunlending Tribesman
|
* When you play this minion, you may discard a [Dunland] card from hand. If you do, this minion is strength +2
|
||||||
* is strength +3 until the regroup phase.
|
* until the regroup phase.
|
||||||
|
* http://lotrtcg.org/coreset/dunland/dunlendingtribesman(r1).png
|
||||||
*/
|
*/
|
||||||
public class Card20_005 extends AbstractMinion {
|
public class Card20_005 extends AbstractMinion {
|
||||||
public Card20_005() {
|
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
|
@Override
|
||||||
@@ -39,7 +40,7 @@ public class Card20_005 extends AbstractMinion {
|
|||||||
new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 1, Culture.DUNLAND));
|
new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 1, Culture.DUNLAND));
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new AddUntilStartOfPhaseModifierEffect(
|
new AddUntilStartOfPhaseModifierEffect(
|
||||||
new StrengthModifier(self, self, 3), Phase.REGROUP));
|
new StrengthModifier(self, self, 2), Phase.REGROUP));
|
||||||
return Collections.singletonList(action);
|
return Collections.singletonList(action);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user