"While We Yet Live"

This commit is contained in:
marcins78@gmail.com
2011-11-03 00:08:43 +00:00
parent 306a0d48fd
commit a697923595

View File

@@ -0,0 +1,31 @@
package com.gempukku.lotro.cards.set7.gondor;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* Set: The Return of the King
* Side: Free
* Culture: Gondor
* Twilight Cost: 0
* Type: Event • Skirmish
* Game Text: Make a roaming minion skirmishing a [GONDOR] Man strength -3.
*/
public class Card7_128 extends AbstractEvent {
public Card7_128() {
super(Side.FREE_PEOPLE, 0, Culture.GONDOR, "While We Yet Live", Phase.SKIRMISH);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, -3, CardType.MINION, Keyword.ROAMING, Filters.inSkirmishAgainst(Culture.GONDOR, Race.MAN)));
return action;
}
}