"Dunlending Warrior"

This commit is contained in:
marcins78@gmail.com
2011-10-05 19:48:13 +00:00
parent e884ce6035
commit 91af16b05a

View File

@@ -0,0 +1,53 @@
package com.gempukku.lotro.cards.set4.dunland;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.PlayConditions;
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.actions.ActivateCardAction;
import com.gempukku.lotro.logic.effects.AssignmentEffect;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Set: The Two Towers
* Side: Shadow
* Culture: Dunland
* Twilight Cost: 3
* Type: Minion • Man
* Strength: 9
* Vitality: 1
* Site: 3
* Game Text: Assignment: Spot an ally to make that ally participate in skirmishes and assign this minion to skirmish
* that ally.
*/
public class Card4_018 extends AbstractMinion {
public Card4_018() {
super(3, 9, 1, 3, Race.MAN, Culture.DUNLAND, "Dunlending Warrior");
}
@Override
protected List<? extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game.getGameState(), Phase.ASSIGNMENT, self, 0)
&& Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.type(CardType.ALLY))) {
final ActivateCardAction action = new ActivateCardAction(self, Keyword.ASSIGNMENT);
if (Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.sameCard(self), Filters.notAssigned())) {
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose an ally", Filters.type(CardType.ALLY), Filters.canBeAssignedToSkirmish()) {
@Override
protected void cardSelected(PhysicalCard ally) {
action.appendEffect(
new AssignmentEffect(playerId, ally, Collections.singletonList(self), "Dunlending Ravager effect"));
}
});
}
return Collections.singletonList(action);
}
return null;
}
}