[J25] Implement Generous Pup

This commit is contained in:
theelk801 2024-11-11 12:03:59 -05:00
parent d7ae7b0e4d
commit afe97b1f8a
3 changed files with 54 additions and 0 deletions

View file

@ -619,6 +619,14 @@ public final class StaticFilters {
}
public static final FilterControlledCreaturePermanent FILTER_OTHER_CONTROLLED_CREATURE = new FilterControlledCreaturePermanent("other creature you control");
static {
FILTER_OTHER_CONTROLLED_CREATURE.add(AnotherPredicate.instance);
FILTER_OTHER_CONTROLLED_CREATURE.setLockedFilter(true);
}
public static final FilterControlledCreaturePermanent FILTER_OTHER_CONTROLLED_CREATURES = new FilterControlledCreaturePermanent("other creatures you control");
static {