mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Gemhide Sliver: Slivers here may not include just creatures
See rules text
This commit is contained in:
parent
c467ef3842
commit
81591a03a8
1 changed files with 2 additions and 7 deletions
|
@ -38,8 +38,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.FilterPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -47,11 +46,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class GemhideSliver extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Sliver"));
|
||||
}
|
||||
private static final FilterPermanent filter = new FilterPermanent("Sliver", "All Slivers");
|
||||
|
||||
public GemhideSliver(UUID ownerId) {
|
||||
super(ownerId, 196, "Gemhide Sliver", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
|
|
Loading…
Reference in a new issue