diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/troll/Card31_065.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/troll/Card31_065.java index a88e52305..8d7db4a40 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/troll/Card31_065.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/troll/Card31_065.java @@ -28,7 +28,7 @@ import java.util.List; * Set: The Short Rest * Side: Shadow * Culture: Troll - * Twilight Cost: 0 + * Twilight Cost: 2 * Type: Condition • Support Area * Game Text: At the start of each assignment phase, you may discard a minion (or exert * a [TROLL] Troll) to spot a [DWARVEN] or [SHIRE] companion. That companion cannot be @@ -36,17 +36,17 @@ import java.util.List; */ public class Card31_065 extends AbstractPermanent { public Card31_065() { - super(Side.SHADOW, 0, CardType.CONDITION, Culture.GUNDABAD, Zone.SUPPORT, "Caught in a Sack"); + super(Side.SHADOW, 2, CardType.CONDITION, Culture.GUNDABAD, Zone.SUPPORT, "Caught in a Sack"); } @Override public List getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, final PhysicalCard self) { if (TriggerConditions.startOfPhase(game, effectResult, Phase.ASSIGNMENT) - && (PlayConditions.canExert(self, game, 1, Culture.TROLL, Race.TROLL) || PlayConditions.canDiscardFromPlay(self, game, CardType.MINION))) { + && (PlayConditions.canExert(self, game, 1, Culture.GUNDABAD, Race.TROLL) || PlayConditions.canDiscardFromPlay(self, game, CardType.MINION))) { final OptionalTriggerAction action = new OptionalTriggerAction(self); List possibleCosts = new LinkedList(); possibleCosts.add( - new ChooseAndExertCharactersEffect(action, playerId, 1, 1, 1, Culture.TROLL, Race.TROLL) { + new ChooseAndExertCharactersEffect(action, playerId, 1, 1, 1, Culture.GUNDABAD, Race.TROLL) { @Override public String getText(LotroGame game) { return "Exert a [TROLL] Troll"; @@ -81,4 +81,4 @@ public class Card31_065 extends AbstractPermanent { } return null; } -} \ No newline at end of file +}