"Alcarin" should now correctly be usable only if his cost (assignment) can be payed.

This commit is contained in:
marcins78@gmail.com
2012-01-10 10:56:57 +00:00
parent ad8684bc7f
commit 32b84feab7
2 changed files with 5 additions and 1 deletions

View File

@@ -46,7 +46,8 @@ public class Card5_031 extends AbstractCompanion {
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.ASSIGNMENT, self)) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.ASSIGNMENT, self)
&& PlayConditions.canSpot(game, self, Filters.assignableToSkirmishAgainst(Side.FREE_PEOPLE, Filters.and(CardType.MINION, Filters.hasAttached(Culture.GONDOR, Keyword.FORTIFICATION))))) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndAssignMinionToCompanionEffect(action, playerId, self, CardType.MINION, Filters.hasAttached(Culture.GONDOR, Keyword.FORTIFICATION)));

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>10 Jan. 2012</b>
- "Alcarin" should now correctly be usable only if his cost (assignment) can be payed.
<b>8 Jan. 2012</b>
- Player owned cards can now be used in casual games, in addition to the normal ones.