- "Dunlending Warrior" cannot be activated now, if you can't spot a follower.

This commit is contained in:
marcins78
2012-12-21 16:41:42 +00:00
parent 5aae32a504
commit f14c892ce3
2 changed files with 5 additions and 1 deletions

View File

@@ -34,7 +34,8 @@ public class Card4_018 extends AbstractMinion {
@Override
protected List<? extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.ASSIGNMENT, self, 0)) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.ASSIGNMENT, self, 0)
&& PlayConditions.canSpot(game, CardType.ALLY)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ChooseAndAssignCharacterToMinionEffect(action, playerId, self, true, CardType.ALLY));

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>21 Dec. 2012</b>
- "Dunlending Warrior" cannot be activated now, if you can't spot a follower.
<b>19 Dec. 2012</b>
- Merchant logic was switched to one based on stock. If it has no specific card, it won't be able to sell it, until it
acquires a copy from another player. Once stock reaches specified number, it will stop buying the card.