From 6d7df9b5e9a88dcd46cc1ab96d3484aa17173372 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Tue, 19 Mar 2013 09:47:30 +0000 Subject: [PATCH] 20_135 --- .../gemp-lotr-async/src/main/web/js/gemp-019/set20.js | 2 +- .../lotro/cards/set20/fallenRealms/Card20_135.java | 10 +++++++--- 2 files changed, 8 insertions(+), 4 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 575ad0992..e78fff5c6 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 @@ -133,7 +133,7 @@ var set20 = { '20_132': 'http://lotrtcg.org/coreset/fallenrealms/overwhelmingnumbers.png', '20_133': 'http://lotrtcg.org/coreset/fallenrealms/redrage.png', '20_134': 'http://lotrtcg.org/coreset/fallenrealms/relentlessarmies.png', - '20_135': 'http://lotrtcg.org/coreset/fallenrealms/resolveofrhun.png', + '20_135': 'http://lotrtcg.org/coreset/fallenrealms/resolveofrhun(r1).png', '20_136': 'http://lotrtcg.org/coreset/fallenrealms/southronbandit.png', '20_137': 'http://lotrtcg.org/coreset/fallenrealms/southrondeadeye.png', '20_138': 'http://lotrtcg.org/coreset/fallenrealms/southronnomad.png', diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_135.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_135.java index 2ef80557c..2db5fe309 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_135.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/fallenRealms/Card20_135.java @@ -3,6 +3,7 @@ package com.gempukku.lotro.cards.set20.fallenRealms; import com.gempukku.lotro.cards.AbstractEvent; import com.gempukku.lotro.cards.PlayConditions; import com.gempukku.lotro.cards.actions.PlayEventAction; +import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect; import com.gempukku.lotro.common.Culture; import com.gempukku.lotro.common.Keyword; import com.gempukku.lotro.common.Phase; @@ -14,8 +15,9 @@ import com.gempukku.lotro.logic.effects.HealCharactersEffect; /** * 0 * Resolve of Rhun - * Fallen Realms Event • Shadow - * If you have initiative, heal every Easterling. + * Event • Shadow + * Exert an Easterling to heal an Easterling. + * http://lotrtcg.org/coreset/fallenrealms/resolveofrhun(r1).png */ public class Card20_135 extends AbstractEvent { public Card20_135() { @@ -25,12 +27,14 @@ public class Card20_135 extends AbstractEvent { @Override public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) { return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile) - && PlayConditions.hasInitiative(game, Side.SHADOW); + && PlayConditions.canExert(self, game, Keyword.EASTERLING); } @Override public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { PlayEventAction action = new PlayEventAction(self); + action.appendCost( + new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Keyword.EASTERLING)); action.appendEffect( new HealCharactersEffect(self, Keyword.EASTERLING)); return action;