From 85257985aa348a5a9717a9339e76d6a2a3ae8e6f Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Wed, 14 Dec 2011 23:58:51 +0000 Subject: [PATCH] - "Skinbark" now exerts itself, rather than discards. --- .../com/gempukku/lotro/cards/set6/gandalf/Card6_035.java | 8 +++++--- .../gemp-lotr-web/src/main/webapp/includes/changeLog.html | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set6/gandalf/Card6_035.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set6/gandalf/Card6_035.java index 89a6a32aa..5bc573d0e 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set6/gandalf/Card6_035.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set6/gandalf/Card6_035.java @@ -1,9 +1,10 @@ package com.gempukku.lotro.cards.set6.gandalf; import com.gempukku.lotro.cards.AbstractCompanion; +import com.gempukku.lotro.cards.PlayConditions; import com.gempukku.lotro.cards.TriggerConditions; import com.gempukku.lotro.cards.effects.PreventCardEffect; -import com.gempukku.lotro.cards.effects.SelfDiscardEffect; +import com.gempukku.lotro.cards.effects.SelfExertEffect; import com.gempukku.lotro.common.Culture; import com.gempukku.lotro.common.Race; import com.gempukku.lotro.filters.Filters; @@ -44,12 +45,13 @@ public class Card6_035 extends AbstractCompanion { @Override public List getOptionalInPlayBeforeActions(String playerId, LotroGame game, final Effect effect, final PhysicalCard self) { - if (TriggerConditions.isGettingWounded(effect, game, Race.HOBBIT, Filters.unboundCompanion)) { + if (TriggerConditions.isGettingWounded(effect, game, Race.HOBBIT, Filters.unboundCompanion) + && PlayConditions.canSelfExert(self, game)) { final WoundCharactersEffect woundEffect = (WoundCharactersEffect) effect; final Collection cardsToBeWounded = woundEffect.getAffectedCardsMinusPrevented(game); final ActivateCardAction action = new ActivateCardAction(self); action.appendCost( - new SelfDiscardEffect(self)); + new SelfExertEffect(self)); action.appendEffect( new ChooseActiveCardEffect(self, playerId, "Choose unbound Hobbit", Race.HOBBIT, Filters.unboundCompanion, Filters.in(cardsToBeWounded)) { @Override diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html index 0e97f4b8a..fcea5e905 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html @@ -1,6 +1,7 @@
 14 Dec. 2011
 - Added "Black Rider" - set 12.
+- "Skinbark" now exerts itself, rather than discards.
 
 13 Dec. 2011
 - "Saruman's Snows" works only on the site it is attached to.