"Voice of Rauros"

"We Must Go Warily"
This commit is contained in:
marcins78@gmail.com
2011-10-01 05:34:59 +00:00
parent 13a982f92f
commit 6ff72d1806
2 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
package com.gempukku.lotro.cards.set3.gondor;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.costs.ChooseAndExertCharactersCost;
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
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.modifiers.KeywordModifier;
/**
* Set: Realms of Elf-lords
* Side: Free
* Culture: Gondor
* Twilight Cost: 0
* Type: Event
* Game Text: Maneuver: Exert Aragorn to make each companion with the Aragorn signet damage +1 until the regroup phase.
*/
public class Card3_047 extends AbstractEvent {
public Card3_047() {
super(Side.FREE_PEOPLE, Culture.GONDOR, "Voice of Rauros", Phase.MANEUVER);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
return super.checkPlayRequirements(playerId, game, self, twilightModifier)
&& PlayConditions.canExert(self, game.getGameState(), game.getModifiersQuerying(), Filters.name("Aragorn"));
}
@Override
public int getTwilightCost() {
return 0;
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersCost(action, playerId, 1, 1, Filters.name("Aragorn")));
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
new KeywordModifier(self, Filters.and(Filters.type(CardType.COMPANION), Filters.signet(Signet.ARAGORN)), Keyword.DAMAGE), Phase.REGROUP));
return action;
}
}

View File

@@ -0,0 +1,55 @@
package com.gempukku.lotro.cards.set3.gondor;
import com.gempukku.lotro.cards.AbstractResponseEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.costs.ChooseAndExertCharactersCost;
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.modifiers.TwilightCostModifier;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Realms of Elf-lords
* Side: Free
* Culture: Gondor
* Twilight Cost: 0
* Type: Event
* Game Text: Response: If the fellowship moves in the regroup phase, exert a [GONDOR] companion twice to make each
* minion's twilight cost +1 until the next regroup phase.
*/
public class Card3_048 extends AbstractResponseEvent {
public Card3_048() {
super(Side.FREE_PEOPLE, Culture.GONDOR, "We Must Go Warily");
}
@Override
public int getTwilightCost() {
return 0;
}
@Override
public List<PlayEventAction> getOptionalAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (effectResult.getType() == EffectResult.Type.WHEN_FELLOWSHIP_MOVES
&& game.getGameState().getCurrentPhase() == Phase.REGROUP
&& PlayConditions.canExert(self, game.getGameState(), game.getModifiersQuerying(), 2, Filters.culture(Culture.GONDOR), Filters.type(CardType.COMPANION))) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersCost(action, playerId, 1, 1, 2, Filters.culture(Culture.GONDOR), Filters.type(CardType.COMPANION)));
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
new TwilightCostModifier(self, Filters.type(CardType.MINION), 1), Phase.REGROUP));
return Collections.singletonList(action);
}
return null;
}
}