- "Watch-tower of Cirith Ungol" now allows to exert only YOUR minion.
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user