mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Pulmonic Sliver: use constructor instead of statically adding subtype
This commit is contained in:
parent
81591a03a8
commit
a462e300c5
1 changed files with 2 additions and 7 deletions
|
@ -49,14 +49,9 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class PulmonicSliver extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("All Sliver creatures");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Sliver", "All Sliver creatures");
|
||||
|
||||
private static final FilterPermanent filterSlivers = new FilterPermanent("All Slivers");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Sliver"));
|
||||
filterSlivers.add(new SubtypePredicate("Sliver"));
|
||||
}
|
||||
private static final FilterPermanent filterSlivers = new FilterPermanent("Sliver", "All Slivers");
|
||||
|
||||
public PulmonicSliver(UUID ownerId) {
|
||||
super(ownerId, 36, "Pulmonic Sliver", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{W}{W}");
|
||||
|
|
Loading…
Reference in a new issue