- "Bilbo, Bearer of Things Burgled" can now only play either non-events or Regroup events (not Skirmish events and thee like).
This commit is contained in:
@@ -5,10 +5,8 @@ import com.gempukku.lotro.cards.PlayConditions;
|
|||||||
import com.gempukku.lotro.cards.effects.AddBurdenEffect;
|
import com.gempukku.lotro.cards.effects.AddBurdenEffect;
|
||||||
import com.gempukku.lotro.cards.effects.ChoiceEffect;
|
import com.gempukku.lotro.cards.effects.ChoiceEffect;
|
||||||
import com.gempukku.lotro.cards.effects.choose.ChooseAndPlayCardFromHandEffect;
|
import com.gempukku.lotro.cards.effects.choose.ChooseAndPlayCardFromHandEffect;
|
||||||
import com.gempukku.lotro.common.Culture;
|
import com.gempukku.lotro.common.*;
|
||||||
import com.gempukku.lotro.common.Keyword;
|
import com.gempukku.lotro.filters.Filters;
|
||||||
import com.gempukku.lotro.common.Phase;
|
|
||||||
import com.gempukku.lotro.common.Race;
|
|
||||||
import com.gempukku.lotro.game.PhysicalCard;
|
import com.gempukku.lotro.game.PhysicalCard;
|
||||||
import com.gempukku.lotro.game.state.LotroGame;
|
import com.gempukku.lotro.game.state.LotroGame;
|
||||||
import com.gempukku.lotro.logic.actions.ActivateCardAction;
|
import com.gempukku.lotro.logic.actions.ActivateCardAction;
|
||||||
@@ -65,7 +63,9 @@ public class Card9_049 extends AbstractCompanion {
|
|||||||
action.appendCost(
|
action.appendCost(
|
||||||
new AddBurdenEffect(self, 1));
|
new AddBurdenEffect(self, 1));
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new ChooseAndPlayCardFromHandEffect(playerId, game, Culture.SHIRE, Keyword.TALE));
|
new ChooseAndPlayCardFromHandEffect(playerId, game, Culture.SHIRE, Keyword.TALE,
|
||||||
|
Filters.or(Filters.not(CardType.EVENT),
|
||||||
|
Filters.and(CardType.EVENT, Keyword.REGROUP))));
|
||||||
return Collections.singletonList(action);
|
return Collections.singletonList(action);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ all optional effects have to be used via cards). If you want to use Muster, just
|
|||||||
what effect you're using). Then you choose which cards you want to discard, up to the number of Muster cards you have.
|
what effect you're using). Then you choose which cards you want to discard, up to the number of Muster cards you have.
|
||||||
All cards are discarded and then you draw an equal number of cards.
|
All cards are discarded and then you draw an equal number of cards.
|
||||||
- "Arwen's Fate" now can't be played if you don't control exertable Aragorn or Arwen.
|
- "Arwen's Fate" now can't be played if you don't control exertable Aragorn or Arwen.
|
||||||
|
- "Bilbo, Bearer of Things Burgled" can now only play either non-events or Regroup events (not Skirmish events and thee like).
|
||||||
|
|
||||||
<b>16 Oct. 2012</b>
|
<b>16 Oct. 2012</b>
|
||||||
- "Down to the Last Child" now triggers on companion/ally losing skirmish, not Uruk-hai winning, so if companion loses
|
- "Down to the Last Child" now triggers on companion/ally losing skirmish, not Uruk-hai winning, so if companion loses
|
||||||
|
|||||||
Reference in New Issue
Block a user