diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/site/Card4_333.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/site/Card4_333.java new file mode 100644 index 000000000..0acb17f77 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/site/Card4_333.java @@ -0,0 +1,45 @@ +package com.gempukku.lotro.cards.set4.site; + +import com.gempukku.lotro.cards.AbstractSite; +import com.gempukku.lotro.common.Block; +import com.gempukku.lotro.common.CardType; +import com.gempukku.lotro.common.Keyword; +import com.gempukku.lotro.common.Phase; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.actions.RequiredTriggerAction; +import com.gempukku.lotro.logic.effects.ChooseAndHealCharactersEffect; +import com.gempukku.lotro.logic.timing.EffectResult; + +import java.util.Collections; +import java.util.List; + +/** + * Set: The Two Towers + * Twilight Cost: 1 + * Type: Site + * Site: 2T + * Game Text: Plains. At the start of each fellowship phase, heal up to 3 wounds from companions. + */ +public class Card4_333 extends AbstractSite { + public Card4_333() { + super("Plains of Rohan Camp", Block.TWO_TOWERS, 2, 1, Direction.LEFT); + addKeyword(Keyword.PLAINS); + } + + @Override + public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) { + if (effectResult.getType() == EffectResult.Type.START_OF_PHASE + && game.getGameState().getCurrentPhase() == Phase.FELLOWSHIP) { + RequiredTriggerAction action = new RequiredTriggerAction(self); + action.appendEffect( + new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION)); + action.appendEffect( + new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION)); + action.appendEffect( + new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION)); + return Collections.singletonList(action); + } + return null; + } +}