mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Implement [ACR] Rooftop Bypass (#12491)
* Implement-ACR-Rooftop-Bypass * Implement-ACR-Rooftop-Bypass
This commit is contained in:
parent
40d132d5fa
commit
aa216dc742
3 changed files with 45 additions and 1 deletions
|
|
@ -1003,6 +1003,14 @@ public final class StaticFilters {
|
|||
FILTER_CONTROLLED_CREATURE_NON_TOKEN.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_CONTROLLED_CREATURES_NON_TOKEN = new FilterCreaturePermanent("nontoken creatures you control");
|
||||
|
||||
static {
|
||||
FILTER_CONTROLLED_CREATURES_NON_TOKEN.add(TargetController.YOU.getControllerPredicate());
|
||||
FILTER_CONTROLLED_CREATURES_NON_TOKEN.add(TokenPredicate.FALSE);
|
||||
FILTER_CONTROLLED_CREATURES_NON_TOKEN.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_CREATURE_NON_TOKEN = new FilterCreaturePermanent("a nontoken creature");
|
||||
|
||||
static {
|
||||
|
|
@ -1010,7 +1018,6 @@ public final class StaticFilters {
|
|||
FILTER_CREATURE_NON_TOKEN.setLockedFilter(true);
|
||||
}
|
||||
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_CREATURES_NON_TOKEN = new FilterCreaturePermanent("nontoken creatures");
|
||||
|
||||
static {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue