- "Let Her Deal With Them" now correctly requires to spot Gollum or Smeagol to be able to play it (both from hand and discard).
This commit is contained in:
@@ -3,6 +3,7 @@ package com.gempukku.lotro.cards.set7.gollum;
|
||||
import com.gempukku.lotro.cards.AbstractAttachable;
|
||||
import com.gempukku.lotro.cards.PlayConditions;
|
||||
import com.gempukku.lotro.common.*;
|
||||
import com.gempukku.lotro.filters.Filter;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.PhysicalCard;
|
||||
import com.gempukku.lotro.game.state.LotroGame;
|
||||
@@ -27,6 +28,12 @@ public class Card7_063 extends AbstractAttachable {
|
||||
super(Side.SHADOW, CardType.CONDITION, 1, Culture.GOLLUM, null, "Let Her Deal With Them");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, Filter additionalAttachmentFilter, int twilightModifier) {
|
||||
return super.checkPlayRequirements(playerId, game, self, additionalAttachmentFilter, twilightModifier)
|
||||
&& PlayConditions.canSpot(game, Filters.gollumOrSmeagol);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
|
||||
return Filters.and(CardType.MINION, Filters.not(Filters.hasAttached(Filters.name(getName()))));
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<pre style="font-size:80%">
|
||||
<b>26 Mar. 2012</b>
|
||||
- "Pillage of Rohan" and other similar cards should be active at the right time now (only on your turn).
|
||||
- "Let Her Deal With Them" now correctly requires to spot Gollum or Smeagol to be able to play it (both from hand
|
||||
and discard).
|
||||
|
||||
<b>16 Mar. 2012</b>
|
||||
- When "Mountain-troll" is played with discarding 5 minions, now it should properly gain Fierce.
|
||||
|
||||
Reference in New Issue
Block a user