Create Card31_060.java

This commit is contained in:
PhallenCassidy
2017-06-14 22:24:47 -04:00
committed by GitHub
parent b77516c341
commit 54476dc240

View File

@@ -44,10 +44,10 @@ public class Card31_060 extends AbstractMinion {
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, 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(
@@ -63,4 +63,4 @@ public class Card31_060 extends AbstractMinion {
}
return null;
}
}
}