mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[LTR] Implement Flowering of the White Tree
This commit is contained in:
parent
fe9b644168
commit
1aea1ebe92
3 changed files with 70 additions and 1 deletions
|
|
@ -1089,13 +1089,20 @@ public final class StaticFilters {
|
|||
FILTER_PERMANENT_LEGENDARY.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_CREATURE_LEGENDARY = new FilterCreaturePermanent();
|
||||
public static final FilterCreaturePermanent FILTER_CREATURE_LEGENDARY = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
FILTER_CREATURE_LEGENDARY.add(SuperType.LEGENDARY.getPredicate());
|
||||
FILTER_CREATURE_LEGENDARY.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_CREATURES_LEGENDARY = new FilterCreaturePermanent("legendary creatures");
|
||||
|
||||
static {
|
||||
FILTER_CREATURES_LEGENDARY.add(SuperType.LEGENDARY.getPredicate());
|
||||
FILTER_CREATURES_LEGENDARY.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCard FILTER_CARD_ARTIFACT_OR_CREATURE = new FilterCard("artifact or creature card");
|
||||
|
||||
static {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue