"Dwarven Stratagem"

This commit is contained in:
marcins78@gmail.com
2012-02-09 22:03:20 +00:00
parent 4d24bb0676
commit 0c51c01ba7

View File

@@ -0,0 +1,76 @@
package com.gempukku.lotro.cards.set17.dwarven;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.ChoiceEffect;
import com.gempukku.lotro.cards.effects.ReinforceTokenEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
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.timing.Effect;
import com.gempukku.lotro.logic.timing.UnrespondableEffect;
import java.util.LinkedList;
import java.util.List;
/**
* Set: Rise of Saruman
* Side: Free
* Culture: Dwarven
* Twilight Cost: 1
* Type: Event • Skirmish
* Game Text: Spot a Dwarf hunter and choose one: exert a minion for each hunter you can spot or reinforce
* a [DWARVEN] token for each hunter you can spot.
*/
public class Card17_003 extends AbstractEvent {
public Card17_003() {
super(Side.FREE_PEOPLE, 1, Culture.DWARVEN, "Dwarven Stratagem", Phase.SKIRMISH);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) {
return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile)
&& PlayConditions.canSpot(game, Race.DWARF, Keyword.HUNTER);
}
@Override
public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
final PlayEventAction action = new PlayEventAction(self);
final int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Keyword.HUNTER);
List<Effect> possibleEffects = new LinkedList<Effect>();
possibleEffects.add(
new UnrespondableEffect() {
@Override
public String getText(LotroGame game) {
return "Exert a minion for each hunter you can spot";
}
@Override
protected void doPlayEffect(LotroGame game) {
for (int i = 0; i < count; i++)
action.appendEffect(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, CardType.MINION));
}
});
possibleEffects.add(
new UnrespondableEffect() {
@Override
public String getText(LotroGame game) {
return "Reinforce a DWARVEN token for each hunter you can spot";
}
@Override
protected void doPlayEffect(LotroGame game) {
for (int i = 0; i < count; i++)
action.appendEffect(
new ReinforceTokenEffect(self, playerId, Token.DWARVEN));
}
});
action.appendEffect(
new ChoiceEffect(action, playerId, possibleEffects));
return action;
}
}