"Barliman Butterbur"

This commit is contained in:
marcins78@gmail.com
2011-09-06 09:51:40 +00:00
parent 1d949b2740
commit 0e22decfef
2 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.gempukku.lotro.cards.effects;
import com.gempukku.lotro.common.Zone;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.GameState;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.timing.UnrespondableEffect;
public class PutCardFromDiscardIntoHandEffect extends UnrespondableEffect {
private PhysicalCard _card;
public PutCardFromDiscardIntoHandEffect(PhysicalCard card) {
_card = card;
}
@Override
public void playEffect(LotroGame game) {
GameState gameState = game.getGameState();
gameState.removeCardFromZone(_card);
gameState.addCardToZone(_card, Zone.HAND);
}
}

View File

@@ -0,0 +1,57 @@
package com.gempukku.lotro.cards.set1.gandalf;
import com.gempukku.lotro.cards.AbstractAlly;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.ExertCharacterEffect;
import com.gempukku.lotro.cards.effects.PutCardFromDiscardIntoHandEffect;
import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.DefaultCostToEffectAction;
import com.gempukku.lotro.logic.effects.ChooseArbitraryCardsEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Set: The Fellowship of the Ring
* Side: Free
* Culture: Gandalf
* Twilight Cost: 0
* Type: Ally • Home 1 • Man
* Strength: 1
* Vitality: 2
* Site: 1
* Game Text: Fellowship: Exert Barliman Butterbur to take a [GANDALF] event into hand from your discard pile.
*/
public class Card1_070 extends AbstractAlly {
public Card1_070() {
super(0, 1, 1, 2, Culture.GANDALF, "Barliman Butterbur", true);
addKeyword(Keyword.MAN);
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game.getGameState(), Phase.FELLOWSHIP, self)
&& PlayConditions.canExert(game.getGameState(), game.getModifiersQuerying(), self)) {
final DefaultCostToEffectAction action = new DefaultCostToEffectAction(self, Keyword.FELLOWSHIP, "Exert Barliman Butterbur to take a GANDALF event into hand from your discard pile.");
action.addCost(new ExertCharacterEffect(self));
action.addEffect(
new ChooseArbitraryCardsEffect(playerId, "Choose GANDALF event", game.getGameState().getDiscard(playerId), Filters.and(Filters.culture(Culture.GANDALF), Filters.type(CardType.EVENT)), 1, 1) {
@Override
protected void cardsSelected(List<PhysicalCard> gandalfEvents) {
action.addEffect(
new PutCardFromDiscardIntoHandEffect(gandalfEvents.get(0)));
}
}
);
return Collections.singletonList(action);
}
return null;
}
}