- "Morgul Destroyer" can now remove threat during Skirmish phase to add +3 strength to itself.
- Discarding cards at the end of regroup, when not moving on, now triggers effects off discarding (i.e. "Mordor Guard").
This commit is contained in:
@@ -69,7 +69,7 @@ public class Card7_190 extends AbstractMinion {
|
||||
@Override
|
||||
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
|
||||
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
|
||||
&& PlayConditions.canRemoveBurdens(game, self, 1)) {
|
||||
&& PlayConditions.canRemoveThreat(game, self, 1)) {
|
||||
ActivateCardAction action = new ActivateCardAction(self);
|
||||
action.appendCost(
|
||||
new RemoveThreatsEffect(self, 1));
|
||||
|
||||
@@ -2,9 +2,8 @@ package com.gempukku.lotro.logic.timing.processes.turn.regroup;
|
||||
|
||||
import com.gempukku.lotro.common.CardType;
|
||||
import com.gempukku.lotro.common.Phase;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.state.GameState;
|
||||
import com.gempukku.lotro.game.state.LotroGame;
|
||||
import com.gempukku.lotro.logic.actions.SystemQueueAction;
|
||||
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
|
||||
import com.gempukku.lotro.logic.timing.processes.GameProcess;
|
||||
import com.gempukku.lotro.logic.timing.processes.turn.EndOfTurnGameProcess;
|
||||
@@ -19,9 +18,10 @@ public class DiscardAllMinionsGameProcess implements GameProcess {
|
||||
|
||||
@Override
|
||||
public void process(LotroGame game) {
|
||||
GameState gameState = _game.getGameState();
|
||||
DiscardCardsFromPlayEffect cards = new DiscardCardsFromPlayEffect(null, Filters.type(CardType.MINION));
|
||||
cards.playEffect(_game);
|
||||
SystemQueueAction action = new SystemQueueAction();
|
||||
action.appendEffect(
|
||||
new DiscardCardsFromPlayEffect(null, CardType.MINION));
|
||||
game.getActionsEnvironment().addActionToStack(action);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
<b>16 Nov. 2011</b>
|
||||
- "Impatient and Angry" only the owner of the Sam should be given an option to remove a burden.
|
||||
- "Get On and Get Away" is playable now in the Fellowship phase.
|
||||
- "Morgul Destroyer" can now remove threat during Skirmish phase to add +3 strength to itself.
|
||||
- Discarding cards at the end of regroup, when not moving on, now triggers effects off discarding (i.e. "Mordor Guard").
|
||||
|
||||
<b>15 Nov. 2011</b>
|
||||
- Added set 08 (Siege of Gondor)
|
||||
|
||||
Reference in New Issue
Block a user