Characters can be chosen to wound or heal X times, if it can be wounded or healed at least once and there is no effect preventing it from being wounded or healed that X times.

This commit is contained in:
marcins78@gmail.com
2012-01-05 14:59:48 +00:00
parent 1f3d6f4729
commit b670a7d69f
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ public class ChooseAndHealCharactersEffect extends ChooseActiveCardsEffect {
@Override
protected Filter getExtraFilterForPlayabilityCheck(LotroGame game) {
return Filters.and(
Filters.hasWounds(_count),
Filters.wounded,
new Filter() {
@Override
public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {

View File

@@ -37,7 +37,7 @@ public class ChooseAndWoundCharactersEffect extends ChooseActiveCardsEffect {
@Override
protected Filter getExtraFilterForPlayabilityCheck(LotroGame game) {
return Filters.canTakeWounds(_count);
return Filters.canTakeWound;
}
@Override