Easterling Strategist

This commit is contained in:
marcins78
2013-11-20 16:46:35 +00:00
parent 4d9de5470c
commit a02459f22a
2 changed files with 16 additions and 9 deletions

View File

@@ -117,7 +117,7 @@ var set20 = {
'20_118': 'http://lotrtcg.org/coreset/fallenrealms/easterlingregiment.jpg',
'20_119': 'http://lotrtcg.org/coreset/fallenrealms/easterlingscout.jpg',
'20_120': 'http://lotrtcg.org/coreset/fallenrealms/easterlingsoldier(r3).jpg',
'20_121': 'http://lotrtcg.org/coreset/fallenrealms/easterlingstrategist.jpg',
'20_121': 'http://lotrtcg.org/coreset/fallenrealms/easterlingstrategist(r3).jpg',
'20_123': 'http://lotrtcg.org/coreset/fallenrealms/freshreinforcements.jpg',
'20_124': 'http://lotrtcg.org/coreset/fallenrealms/halberdofrhun.jpg',
'20_125': 'http://lotrtcg.org/coreset/fallenrealms/haradrimbow.jpg',

View File

@@ -2,6 +2,9 @@ package com.gempukku.lotro.cards.set20.fallenRealms;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.modifiers.conditions.MinThreatCondition;
import com.gempukku.lotro.cards.modifiers.evaluator.ConditionEvaluator;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Phase;
@@ -10,24 +13,27 @@ 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.ChooseAndHealCharactersEffect;
import com.gempukku.lotro.logic.effects.DrawCardsEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* 5
* •Easterling Strategist
* Fallen Realms Minion • Man
* 10 3 4
* Easterling.
* Shadow: Heal this minion to draw a card.
* ❺ •Easterling Strategist [Fal]
* Minion • Man
* Strength: 10 Vitality: 3 Roaming: 4
* Easterling. Enduring. (For each wound on this character, this character is strength +2.)
* Lurker. (During the skirmish phase(s), the Free Peoples player must resolve all skirmishes involving minions who do not have the lurker keyword before he may choose to resolve any skirmishes involving one or more minions who do have it.)
* Skirmish: Heal this minion to make an Easterling strength +2 (or strength +3 if you can spot 2 threats).
* <p/>
* http://lotrtcg.org/coreset/fallenrealms/easterlingstrategist(r3).jpg
*/
public class Card20_121 extends AbstractMinion {
public Card20_121() {
super(5, 10, 3, 4, Race.MAN, Culture.FALLEN_REALMS, "Easterling Strategist", null, true);
addKeyword(Keyword.EASTERLING);
addKeyword(Keyword.ENDURING);
addKeyword(Keyword.LURKER);
}
@Override
@@ -38,7 +44,8 @@ public class Card20_121 extends AbstractMinion {
action.appendCost(
new ChooseAndHealCharactersEffect(action, playerId, self));
action.appendEffect(
new DrawCardsEffect(action, playerId, 1));
new ChooseAndAddUntilEOPStrengthBonusEffect(
action, self, playerId, new ConditionEvaluator(2, 3, new MinThreatCondition(2)), Keyword.EASTERLING));
return Collections.singletonList(action);
}
return null;