Marching Onward
This commit is contained in:
@@ -123,6 +123,7 @@ var set20 = {
|
|||||||
'20_125': 'http://lotrtcg.org/coreset/fallenrealms/haradrimbow.jpg',
|
'20_125': 'http://lotrtcg.org/coreset/fallenrealms/haradrimbow.jpg',
|
||||||
'20_126': 'http://lotrtcg.org/coreset/fallenrealms/haradrimspear.jpg',
|
'20_126': 'http://lotrtcg.org/coreset/fallenrealms/haradrimspear.jpg',
|
||||||
'20_127': 'http://lotrtcg.org/coreset/fallenrealms/lieutenantofrhun.jpg',
|
'20_127': 'http://lotrtcg.org/coreset/fallenrealms/lieutenantofrhun.jpg',
|
||||||
|
'20_128': 'http://lotrtcg.org/coreset/fallenrealms/marchingonward(r3).jpg',
|
||||||
'20_129': 'http://lotrtcg.org/coreset/fallenrealms/mumak.jpg',
|
'20_129': 'http://lotrtcg.org/coreset/fallenrealms/mumak.jpg',
|
||||||
'20_130': 'http://lotrtcg.org/coreset/fallenrealms/mumakchieftain.jpg',
|
'20_130': 'http://lotrtcg.org/coreset/fallenrealms/mumakchieftain.jpg',
|
||||||
'20_131': 'http://lotrtcg.org/coreset/fallenrealms/mumakcommandersots.jpg',
|
'20_131': 'http://lotrtcg.org/coreset/fallenrealms/mumakcommandersots.jpg',
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
package com.gempukku.lotro.cards.set20.fallenRealms;
|
||||||
|
|
||||||
|
import com.gempukku.lotro.cards.AbstractPermanent;
|
||||||
|
import com.gempukku.lotro.cards.PlayConditions;
|
||||||
|
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
|
||||||
|
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
|
||||||
|
import com.gempukku.lotro.common.*;
|
||||||
|
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.RemoveThreatsEffect;
|
||||||
|
import com.gempukku.lotro.logic.timing.Action;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ❷ •Marching Onward [Fal]
|
||||||
|
* Condition • Support Area
|
||||||
|
* Skirmish: Exert an Easterling and remove a threat to make an Easterling strength +1.
|
||||||
|
* <p/>
|
||||||
|
* http://lotrtcg.org/coreset/fallenrealms/marchingonward(r3).jpg
|
||||||
|
*/
|
||||||
|
public class Card20_128 extends AbstractPermanent {
|
||||||
|
public Card20_128() {
|
||||||
|
super(Side.SHADOW, 2, CardType.CONDITION, Culture.FALLEN_REALMS, Zone.SUPPORT, "Marching Onward", null, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
|
||||||
|
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
|
||||||
|
&& PlayConditions.canExert(self, game, Keyword.EASTERLING)
|
||||||
|
&& PlayConditions.canRemoveThreat(game, self, 1)) {
|
||||||
|
ActivateCardAction action = new ActivateCardAction(self);
|
||||||
|
action.appendCost(
|
||||||
|
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Keyword.EASTERLING));
|
||||||
|
action.appendCost(
|
||||||
|
new RemoveThreatsEffect(self, 1));
|
||||||
|
action.appendEffect(
|
||||||
|
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, 1, Keyword.EASTERLING));
|
||||||
|
return Collections.singletonList(action);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -122,6 +122,7 @@
|
|||||||
20S125
|
20S125
|
||||||
20S126
|
20S126
|
||||||
20S127
|
20S127
|
||||||
|
20S128
|
||||||
20S129
|
20S129
|
||||||
20S130
|
20S130
|
||||||
20S131
|
20S131
|
||||||
|
|||||||
Reference in New Issue
Block a user