- "Called Away" cannot be played now if burdens cannot be removed.

This commit is contained in:
marcins78@gmail.com
2012-10-05 09:38:10 +00:00
parent 4c4798a91c
commit 57febbcf11
2 changed files with 5 additions and 1 deletions

View File

@@ -34,7 +34,8 @@ public class Card8_093 extends AbstractPermanent {
protected List<? extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)
&& PlayConditions.canDiscardFromPlay(self, game, Culture.SAURON, CardType.MINION)
&& PlayConditions.canSpot(game, CardType.COMPANION, Filters.not(Filters.ringBearer), Filters.lessVitalityThan(game.getGameState().getBurdens() + 1))) {
&& PlayConditions.canSpot(game, CardType.COMPANION, Filters.not(Filters.ringBearer), Filters.lessVitalityThan(game.getGameState().getBurdens() + 1))
&& PlayConditions.canRemoveBurdens(game, self, 1)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, Culture.SAURON, CardType.MINION));

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>5 Oct. 2012</b>
- "Called Away" cannot be played now if burdens cannot be removed.
<b>2 Oct. 2012</b>
- "Ugluk's Sword, Weapon of Command" - bearer cannot take wounds only if you control 2 or more sites now.