- "Mearas of the Mark" now exerts only minions in its skirmish (per card text).

This commit is contained in:
marcins78
2013-03-14 18:09:49 +00:00
parent 5ad67b877a
commit 1741be041a
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
- "Uruk Bloodfiend" now has 9 Strength (per card text).
- "Dunlending Ruffian" assigns itself to the companion, only if it is alive.
- "Boromir, Son of Denethor" now has 6 resistance, instead of 5 (per card text).
- "Mearas of the Mark" now exerts only minions in its skirmish (per card text).
<b>13 Mar. 2013</b>
- "Waylayed" now wounds 1 companion 4 times, instead of 4 companions once.

View File

@@ -37,7 +37,7 @@ public class Card20_334 extends AbstractAttachableFPPossession {
&& PlayConditions.isActive(game, Filters.hasAttached(self), Filters.inSkirmish)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new ExertCharactersEffect(action, self, CardType.MINION, Filters.not(Filters.mounted)));
new ExertCharactersEffect(action, self, CardType.MINION, Filters.not(Filters.mounted), Filters.inSkirmish));
return Collections.singletonList(action);
}
return null;