diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index b86337f77..f921f1ea4 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -1,4 +1,8 @@
+21 Jan. 2013
+- "Shapes Slowly Advancing" corrupts Ring-bearer whenever there are 4 tokens on the condition, even if the last token
+was added by Reinforcing it.
+
19 Jan. 2013
- "Hugin, Emissary from Laketown" can now only put FP card from discard on bottom of deck.
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_217.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_217.java
index 84c1d166c..1a197870e 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_217.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_217.java
@@ -12,11 +12,12 @@ import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.GameUtils;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
+import com.gempukku.lotro.logic.actions.RequiredTriggerAction;
import com.gempukku.lotro.logic.actions.SubAction;
import com.gempukku.lotro.logic.effects.CorruptRingBearerEffect;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.Effect;
-import com.gempukku.lotro.logic.timing.UnrespondableEffect;
+import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
@@ -36,6 +37,17 @@ public class Card11_217 extends AbstractPermanent {
super(Side.SHADOW, 2, CardType.CONDITION, Culture.WRAITH, Zone.SUPPORT, "Shapes Slowly Advancing");
}
+ @Override
+ public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
+ if (game.getGameState().getTokenCount(self, Token.WRAITH) >= 4) {
+ RequiredTriggerAction action = new RequiredTriggerAction(self);
+ action.appendEffect(
+ new CorruptRingBearerEffect());
+ return Collections.singletonList(action);
+ }
+ return null;
+ }
+
@Override
protected List extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)
@@ -63,15 +75,6 @@ public class Card11_217 extends AbstractPermanent {
}
}
));
- action.appendEffect(
- new UnrespondableEffect() {
- @Override
- protected void doPlayEffect(LotroGame game) {
- if (game.getGameState().getTokenCount(self, Token.WRAITH) >= 4)
- action.appendEffect(
- new CorruptRingBearerEffect());
- }
- });
return Collections.singletonList(action);
}
return null;