This commit is contained in:
marcins78@gmail.com
2012-03-09 12:02:00 +00:00
parent bc0041a77d
commit cfceb2d931
2 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
package com.gempukku.lotro.cards.set19.rohan;
import com.gempukku.lotro.cards.AbstractCompanion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.choose.ChooseAndPlayCardFromHandEffect;
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.ActivateCardAction;
import java.util.Collections;
import java.util.List;
/**
* Set: Ages End
* Side: Free
* Culture: Rohan
* Twilight Cost: 2
* Type: Companion • Man
* Strength: 6
* Vitality: 3
* Resistance: 7
* Game Text: Valiant. Fellowship: Play a [ROHAN] companion with a twilight cost of 3 or more; his or her twilight
* cost is -1.
*/
public class Card19_026 extends AbstractCompanion {
public Card19_026() {
super(2, 6, 3, 7, Culture.ROHAN, Race.MAN, null, "Eowyn", true);
addKeyword(Keyword.VALIANT);
}
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.FELLOWSHIP, self)
&& PlayConditions.canPlayFromHand(playerId, game, -1, Culture.ROHAN, CardType.COMPANION, Filters.minPrintedTwilightCost(3))) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ChooseAndPlayCardFromHandEffect(playerId, game, -1, Culture.ROHAN, CardType.COMPANION, Filters.minPrintedTwilightCost(3)));
return Collections.singletonList(action);
}
return null;
}
}

View File

@@ -215,6 +215,15 @@ public class Filters {
};
}
public static Filter minPrintedTwilightCost(final int printedTwilightCost) {
return new Filter() {
@Override
public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {
return physicalCard.getBlueprint().getTwilightCost() >= printedTwilightCost;
}
};
}
public static Filter hasToken(final Token token) {
return hasToken(token, 1);
}