Fixed couple of cards
This commit is contained in:
@@ -465,6 +465,10 @@
|
||||
"type": "modifier",
|
||||
"modifier": {
|
||||
"type": "canttakemorewoundsthan",
|
||||
"condition": {
|
||||
"type": "location",
|
||||
"filter": "or(mountain,underground)"
|
||||
},
|
||||
"phase": "skirmish",
|
||||
"amount": 1
|
||||
}
|
||||
|
||||
@@ -12,6 +12,6 @@ public class MoveCountMinimum implements RequirementProducer {
|
||||
FieldUtils.validateAllowedFields(object, "amount");
|
||||
|
||||
final int count = FieldUtils.getInteger(object.get("amount"), "amount");
|
||||
return (actionContext) -> actionContext.getGame().getGameState().getMoveCount() <= count;
|
||||
return (actionContext) -> actionContext.getGame().getGameState().getMoveCount() >= count;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user