From 1237f372afc88a30e974bcd40aead5c7050326ac Mon Sep 17 00:00:00 2001 From: marcins78 Date: Tue, 19 Mar 2013 09:37:35 +0000 Subject: [PATCH] 20_078 --- .../src/main/web/js/gemp-019/set20.js | 2 +- .../lotro/cards/set20/elven/Card20_078.java | 13 +++++++------ 2 files changed, 8 insertions(+), 7 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 3cdb77089..589dab65a 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 @@ -76,7 +76,7 @@ var set20 = { '20_75': 'http://lotrtcg.org/coreset/elven/bowofthegaladhrimgg.png', '20_76': 'http://lotrtcg.org/coreset/elven/bruinenunleashed.png', '20_77': 'http://lotrtcg.org/coreset/elven/celebornlotgw.png', - '20_78': 'http://lotrtcg.org/coreset/elven/coordinatedstrike.png', + '20_78': 'http://lotrtcg.org/coreset/elven/coordinatedstrike(r1).png', '20_79': 'http://lotrtcg.org/coreset/elven/cripplingarrows.png', '20_80': 'http://lotrtcg.org/coreset/elven/elrondp.png', '20_81': 'http://lotrtcg.org/coreset/elven/elvenbow.png', diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_078.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_078.java index 5f0cca1f4..118683261 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_078.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_078.java @@ -21,9 +21,10 @@ import java.util.List; /** * 3 * Coordinated Strike - * Elven Condition • Support Area - * The twilight cost of this condition is -1 for each unwounded [Elven] archer you can spot. - * Archery: Exert two [Elven] archers and discard this condition to make the fellowship archery total +2. + * Condition • Support Area + * The twilight cost of this condition is -1 for each unwounded [Elven] archer companion you can spot. + * Archery: Exert two [Elven] archer companions and discard this condition to make the fellowship archery total +2. + * http://lotrtcg.org/coreset/elven/coordinatedstrike(r1).png */ public class Card20_078 extends AbstractPermanent { public Card20_078() { @@ -32,17 +33,17 @@ public class Card20_078 extends AbstractPermanent { @Override public int getTwilightCostModifier(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) { - return -Filters.countActive(gameState, modifiersQuerying, Culture.ELVEN, Keyword.ARCHER, Filters.unwounded); + return -Filters.countActive(gameState, modifiersQuerying, Culture.ELVEN, CardType.COMPANION, Keyword.ARCHER, Filters.unwounded); } @Override protected List getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) { if (PlayConditions.canUseFPCardDuringPhase(game, Phase.ARCHERY, self) - && PlayConditions.canExert(self,game, 1, 2, Culture.ELVEN, Keyword.ARCHER) + && PlayConditions.canExert(self,game, 1, 2, Culture.ELVEN, CardType.COMPANION, Keyword.ARCHER) && PlayConditions.canSelfDiscard(self, game)) { ActivateCardAction action = new ActivateCardAction(self); action.appendCost( - new ChooseAndExertCharactersEffect(action, playerId, 2, 2, 1, Culture.ELVEN, Keyword.ARCHER)); + new ChooseAndExertCharactersEffect(action, playerId, 2, 2, 1, Culture.ELVEN, CardType.COMPANION, Keyword.ARCHER)); action.appendCost( new SelfDiscardEffect(self)); action.appendEffect(