implement [ACR] Eivor, Wolf-Kissed

closes #12499
This commit is contained in:
xenohedron 2024-09-06 22:46:37 -04:00
parent 5f611947ae
commit 64aeba659e
3 changed files with 90 additions and 1 deletions

View file

@ -45,7 +45,7 @@ public class TargetCardAndOrCard extends TargetCard {
/**
* a [firstType] card and/or a [secondType] card
*/
protected TargetCardAndOrCard(Predicate<? super Card> firstPredicate, Predicate<? super Card> secondPredicate, String filterText) {
public TargetCardAndOrCard(Predicate<? super Card> firstPredicate, Predicate<? super Card> secondPredicate, String filterText) {
super(0, 2, Zone.ALL, makeFilter(firstPredicate, secondPredicate, filterText));
this.assignment = new PredicateCardAssignment(firstPredicate, secondPredicate);
}