"Discipline"

This commit is contained in:
marcins78
2013-01-07 17:21:04 +00:00
parent dabfc21774
commit 27db8a5491

View File

@@ -0,0 +1,31 @@
package com.gempukku.lotro.cards.set20.fallenRealms;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Phase;
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.ChooseAndHealCharactersEffect;
/**
* 0
* Discipline
* Fallen Realms Event • Shadow
* Heal an Easterling.
*/
public class Card20_109 extends AbstractEvent {
public Card20_109() {
super(Side.SHADOW, 0, Culture.FALLEN_REALMS, "Discipline", Phase.SHADOW);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, Keyword.EASTERLING));
return action;
}
}