- "Watch-tower of Cirith Ungol" now allows to exert only YOUR minion.

This commit is contained in:
marcins78@gmail.com
2012-01-28 01:22:31 +00:00
parent 075af468ef
commit 93784d11aa
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
@@ -32,10 +33,10 @@ public class Card11_262 extends AbstractNewSite {
@Override
public List<? extends Action> getPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseSiteDuringPhase(game, Phase.MANEUVER, self)
&& PlayConditions.canExert(self, game, Culture.ORC, CardType.MINION)) {
&& PlayConditions.canExert(self, game, Filters.owner(playerId), Culture.ORC, CardType.MINION)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.ORC, CardType.MINION));
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.owner(playerId), Culture.ORC, CardType.MINION));
action.appendEffect(
new DiscardCardAtRandomFromHandEffect(self, game.getGameState().getCurrentPlayerId(), true));
return Collections.singletonList(action);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>28 Jan. 2012</b>
- "Watch-tower of Cirith Ungol" now allows to exert only YOUR minion.
<b>26 Jan. 2012</b>
- Cards that remove keyword bonuses (like "Trapped and Alone") now correctly remove the keyword bonuses.