"Noble Intentions"

This commit is contained in:
marcins78@gmail.com
2011-09-05 01:21:14 +00:00
parent bbd76e2a61
commit 6ed9cceed3

View File

@@ -0,0 +1,63 @@
package com.gempukku.lotro.cards.set1.shire;
import com.gempukku.lotro.cards.AbstractLotroCardBlueprint;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.AddUntilEndOfPhaseModifierEffect;
import com.gempukku.lotro.cards.effects.ExertCharacterEffect;
import com.gempukku.lotro.cards.modifiers.StrengthModifier;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Set: The Fellowship of the Ring
* Side: Free
* Culture: Shire
* Twilight Cost: 0
* Type: Event
* Game Text: Skirmish: Exert a companion (except a Hobbit) to make a Hobbit strength +3.
*/
public class Card1_304 extends AbstractLotroCardBlueprint {
public Card1_304() {
super(Side.FREE_PEOPLE, CardType.EVENT, Culture.SHIRE, "Noble Intentions");
addKeyword(Keyword.SKIRMISH);
}
@Override
public int getTwilightCost() {
return 0;
}
@Override
public List<? extends Action> getPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canPlayFPCardDuringPhase(game, Phase.SKIRMISH, self)
&& Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.type(CardType.COMPANION), Filters.not(Filters.keyword(Keyword.HOBBIT)), Filters.canExert())) {
final PlayEventAction action = new PlayEventAction(self);
action.addCost(
new ChooseActiveCardEffect(playerId, "Choose a non-Hobbit companion", Filters.type(CardType.COMPANION), Filters.not(Filters.keyword(Keyword.HOBBIT)), Filters.canExert()) {
@Override
protected void cardSelected(PhysicalCard nonHobbitCompanion) {
action.addCost(new ExertCharacterEffect(nonHobbitCompanion));
}
});
action.addEffect(
new ChooseActiveCardEffect(playerId, "Choose a Hobbit", Filters.keyword(Keyword.HOBBIT)) {
@Override
protected void cardSelected(PhysicalCard hobbit) {
action.addEffect(
new AddUntilEndOfPhaseModifierEffect(
new StrengthModifier(self, Filters.sameCard(hobbit), 3), Phase.SKIRMISH));
}
});
return Collections.singletonList(action);
}
return null;
}
}