From 68f8704f878eb9ac68df2c87722ab25457745543 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Fri, 15 Mar 2013 17:53:43 +0000 Subject: [PATCH] 20_018 --- .../src/main/web/js/gemp-019/set20.js | 2 +- .../lotro/cards/set20/dunland/Card20_018.java | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-019/set20.js b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-019/set20.js index 0e20e773f..80b0e06ad 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-019/set20.js +++ b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-019/set20.js @@ -16,7 +16,7 @@ var set20 = { '20_15': 'http://lotrtcg.org/coreset/dunland/hillmantribe(r1).png', '20_16': 'http://lotrtcg.org/coreset/dunland/hillmantorchbearer.png', '20_17': 'http://lotrtcg.org/coreset/dunland/hillmanprimitive(r1).png', - '20_18': 'http://lotrtcg.org/coreset/dunland/hillmanpillager.png', + '20_18': 'http://lotrtcg.org/coreset/dunland/hillmanpillager(r1).png', '20_19': 'http://lotrtcg.org/coreset/dunland/hillmanwarrior.png', '20_20': 'http://lotrtcg.org/coreset/dunland/frecaos.png', '20_21': 'http://lotrtcg.org/coreset/dunland/wulfwod.png', diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_018.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_018.java index b83060f0f..d854467a9 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_018.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/dunland/Card20_018.java @@ -17,24 +17,24 @@ import java.util.List; /** * 5 * Hillman Pillager - * Dunland Minion • Man - * 13 1 3 - * Shadow: If stacked on a site you control, play Hillman Pillager; his twilight cost is -1 for each Free Peoples - * possession you can spot. - * Regroup: Spot Saruman or another [Dunland] Man to stack Hillman Pillager on a site you control. + * Minion • Man + * 11 1 3 + * Shadow: If stacked on a site you control, play this minion; his twilight cost is -1 for each Free Peoples possession + * you can spot. + * Regroup: Spot Saruman or another [Dunland] Man to stack this minion on a site you control. + * http://lotrtcg.org/coreset/dunland/hillmanpillager(r1).png */ public class Card20_018 extends AbstractMinion { public Card20_018() { - super(5, 13, 1, 3, Race.MAN, Culture.DUNLAND, "Hillman Pillager"); + super(5, 11, 1, 3, Race.MAN, Culture.DUNLAND, "Hillman Pillager"); } - @Override public List getPhaseActionsFromStacked(String playerId, LotroGame game, PhysicalCard self) { if (PlayConditions.canUseStackedShadowCardDuringPhase(game, Phase.SHADOW, self, 0) && PlayConditions.stackedOn(self, game, Filters.siteControlled(self.getOwner())) - && checkPlayRequirements(playerId, game, self, 0, -Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false, false)) { - return Collections.singletonList(getPlayCardAction(playerId, game, self, -Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false)); + && checkPlayRequirements(playerId, game, self, 0, -Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false, false)) { + return Collections.singletonList(getPlayCardAction(playerId, game, self, -Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false)); } return null; }