- "Crags of Emyn Muil" now only wounds companions in Regroup phase.

This commit is contained in:
marcins78@gmail.com
2011-12-15 00:30:27 +00:00
parent b4adc74f19
commit 1f74f36bf9
2 changed files with 5 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
package com.gempukku.lotro.cards.set11.site;
import com.gempukku.lotro.cards.AbstractNewSite;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.common.CardType;
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;
@@ -29,7 +31,8 @@ public class Card11_234 extends AbstractNewSite {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.movesFrom(game, effectResult, self, Filters.region(2))) {
if (TriggerConditions.movesFrom(game, effectResult, self, Filters.region(2))
&& PlayConditions.isPhase(game, Phase.REGROUP)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new WoundCharactersEffect(self, CardType.COMPANION));

View File

@@ -3,6 +3,7 @@
- Added "Black Rider" - set 12.
- "Skinbark" now exerts itself, rather than discards.
- "Southron Leader" now can be used when should be.
- "Crags of Emyn Muil" now only wounds companions in Regroup phase.
<b>13 Dec. 2011</b>
- "Saruman's Snows" works only on the site it is attached to.