forked from External/mage
[DFT] Implement Lightwheel Enhancements
This commit is contained in:
parent
d33f104985
commit
175ca742b0
23 changed files with 157 additions and 275 deletions
|
|
@ -754,6 +754,17 @@ public final class StaticFilters {
|
|||
FILTER_PERMANENT_CREATURE_OR_LAND.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterPermanent FILTER_PERMANENT_CREATURE_OR_VEHICLE = new FilterPermanent("creature or Vehicle");
|
||||
|
||||
static {
|
||||
FILTER_PERMANENT_CREATURE_OR_VEHICLE.add(
|
||||
Predicates.or(
|
||||
CardType.CREATURE.getPredicate(),
|
||||
SubType.VEHICLE.getPredicate()
|
||||
));
|
||||
FILTER_PERMANENT_CREATURE_OR_VEHICLE.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_PERMANENT_A_CREATURE = new FilterCreaturePermanent("a creature");
|
||||
|
||||
static {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue