diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_115.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_115.java new file mode 100644 index 000000000..e4fb9d234 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_115.java @@ -0,0 +1,43 @@ +package com.gempukku.lotro.cards.set20.fallenRealms; + +import com.gempukku.lotro.cards.AbstractMinion; +import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect; +import com.gempukku.lotro.common.*; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.actions.ActivateCardAction; +import com.gempukku.lotro.logic.effects.HealCharactersEffect; +import com.gempukku.lotro.logic.timing.Action; + +import java.util.Collections; +import java.util.List; + +/** + * 1 + * Easterling Grunt + * Fallen Realms Minion • Man + * 5 2 4 + * Easterling. + * Shadow: Exert a [Fallen Realms] minion to heal this minion. + */ +public class Card20_115 extends AbstractMinion { + public Card20_115() { + super(1, 5, 2, 4, Race.MAN, Culture.FALLEN_REALMS, "Easterling Grunt"); + addKeyword(Keyword.EASTERLING); + } + + @Override + protected List getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) { + if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SHADOW, self, 0) + && PlayConditions.canExert(self, game, Culture.FALLEN_REALMS, CardType.MINION)) { + ActivateCardAction action = new ActivateCardAction(self); + action.appendCost( + new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.FALLEN_REALMS, CardType.MINION)); + action.appendEffect( + new HealCharactersEffect(self, self)); + return Collections.singletonList(action); + } + return null; + } +}