"Gates of Moria"

This commit is contained in:
marcins78
2013-02-13 12:02:09 +00:00
parent 6d812618d5
commit 39cbfe89dd

View File

@@ -0,0 +1,44 @@
package com.gempukku.lotro.cards.set20.site;
import com.gempukku.lotro.cards.AbstractSite;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.choose.ChooseAndPlayCardFromHandEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.GameUtils;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.effects.DrawCardsEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Gates of Moria
* 3 1
* Sanctuary. Underground.
* Fellowship: Play a [Dwarven] possession to draw a card.
*/
public class Card20_432 extends AbstractSite {
public Card20_432() {
super("Gates of Moria", Block.SECOND_ED, 3, 1, null);
addKeyword(Keyword.SANCTUARY);
addKeyword(Keyword.UNDERGROUND);
}
@Override
public List<? extends Action> getPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseSiteDuringPhase(game, Phase.FELLOWSHIP, self)
&& GameUtils.isFP(game, playerId)
&& PlayConditions.canPlayFromHand(playerId, game, Culture.DWARVEN, CardType.POSSESSION)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndPlayCardFromHandEffect(playerId, game, Culture.DWARVEN, CardType.POSSESSION));
action.appendEffect(
new DrawCardsEffect(action, playerId, 1));
return Collections.singletonList(action);
}
return null;
}
}