- "Armed for Battle" now allows to play card from draw deck, only if you're at the Battleground.

This commit is contained in:
marcins78@gmail.com
2012-06-07 13:34:31 +00:00
parent 754fe9d498
commit 3e3922d29f
2 changed files with 6 additions and 2 deletions

View File

@@ -41,8 +41,9 @@ public class Card11_106 extends AbstractEvent {
List<Effect> possibleEffects = new LinkedList<Effect>();
possibleEffects.add(
new ChooseAndPlayCardFromDiscardEffect(playerId, game, Culture.ORC, CardType.POSSESSION));
possibleEffects.add(
new ChooseAndPlayCardFromDeckEffect(playerId, Culture.ORC, CardType.POSSESSION));
if (PlayConditions.location(game, Keyword.BATTLEGROUND))
possibleEffects.add(
new ChooseAndPlayCardFromDeckEffect(playerId, Culture.ORC, CardType.POSSESSION));
action.appendEffect(
new ChoiceEffect(action, playerId, possibleEffects));
return action;

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>7 Jun. 2012</b>
- "Armed for Battle" now allows to play card from draw deck, only if you're at the Battleground.
<b>6 Jun. 2012</b>
- "Final Account" now requires to exert a GANDALF Wizard to play it.
- "Perspective" now correctly adds threats.