Create Card31_063.java

This commit is contained in:
PhallenCassidy
2017-06-14 22:23:55 -04:00
committed by GitHub
parent 2ce63824e7
commit 837f7b6fb1

View File

@@ -38,7 +38,7 @@ public class Card31_063 extends AbstractMinion {
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
&& PlayConditions.canDiscardFromPlay(self, game, Race.ORC)) {
final ActivateCardAction action = new ActivateCardAction(self);
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, Race.ORC));
action.appendEffect(
@@ -60,4 +60,4 @@ public class Card31_063 extends AbstractMinion {
}
return null;
}
}
}