Heightened Awareness
This commit is contained in:
@@ -190,7 +190,7 @@ var set20 = {
|
||||
'20_192': 'http://lotrtcg.org/coreset/gondor/faramirsbowil.jpg',
|
||||
'20_193': 'http://lotrtcg.org/coreset/gondor/faramirscloak.jpg',
|
||||
'20_194': 'http://lotrtcg.org/coreset/gondor/flamingbrand.jpg',
|
||||
'20_195': 'http://lotrtcg.org/coreset/gondor/heightenedawareness.jpg',
|
||||
'20_195': 'http://lotrtcg.org/coreset/gondor/heightenedawareness(r3).jpg',
|
||||
'20_196': 'http://lotrtcg.org/coreset/gondor/hornofgondor.jpg',
|
||||
'20_197': 'http://lotrtcg.org/coreset/gondor/intothewild.jpg',
|
||||
'20_198': 'http://lotrtcg.org/coreset/gondor/legacyofnumenor.jpg',
|
||||
|
||||
@@ -5,7 +5,6 @@ import com.gempukku.lotro.cards.TriggerConditions;
|
||||
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
|
||||
import com.gempukku.lotro.cards.modifiers.MinionSiteNumberModifier;
|
||||
import com.gempukku.lotro.common.*;
|
||||
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.RequiredTriggerAction;
|
||||
@@ -15,10 +14,11 @@ import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 1
|
||||
* •Heightened Awareness
|
||||
* Gondor Condition • Support Area
|
||||
* Each time you play a [Gondor] event, the site number of each minion is +2 until the regroup phase.
|
||||
* ❶ •Heightened Awareness [Gon]
|
||||
* Condition • Support Area
|
||||
* Each time you play a [Gon] event, the site number of each minion in play is +2 until the regroup phase
|
||||
* <p/>
|
||||
* http://lotrtcg.org/coreset/gondor/heightenedawareness(r3).jpg
|
||||
*/
|
||||
public class Card20_195 extends AbstractPermanent {
|
||||
public Card20_195() {
|
||||
@@ -31,7 +31,7 @@ public class Card20_195 extends AbstractPermanent {
|
||||
RequiredTriggerAction action = new RequiredTriggerAction(self);
|
||||
action.appendEffect(
|
||||
new AddUntilStartOfPhaseModifierEffect(
|
||||
new MinionSiteNumberModifier(self, Filters.in(Filters.filterActive(game.getGameState(), game.getModifiersQuerying(), CardType.MINION)), null, 2), Phase.REGROUP));
|
||||
new MinionSiteNumberModifier(self, CardType.MINION, null, 2), Phase.REGROUP));
|
||||
return Collections.singletonList(action);
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user