"Stout Resistance"

This commit is contained in:
marcins78@gmail.com
2011-11-02 23:34:43 +00:00
parent 2215b4c7ea
commit d667e57df5

View File

@@ -0,0 +1,43 @@
package com.gempukku.lotro.cards.set7.gondor;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.AddThreatsEffect;
/**
* Set: The Return of the King
* Side: Free
* Culture: Gondor
* Twilight Cost: 0
* Type: Event • Skirmish
* Game Text: Add a threat to make a [GONDOR] Man strength +3.
*/
public class Card7_121 extends AbstractEvent {
public Card7_121() {
super(Side.FREE_PEOPLE, 0, Culture.GONDOR, "Stout Resistance", Phase.SKIRMISH);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
return super.checkPlayRequirements(playerId, game, self, twilightModifier)
&& PlayConditions.canAddThreat(game, self, 1);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new AddThreatsEffect(playerId, self, 1));
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, 3, Culture.GONDOR, Race.MAN));
return action;
}
}