mirror of
https://github.com/correl/mage.git
synced 2025-04-08 01:01:04 -09:00
Subtype filter fix for Grave Bramble and Ghoulcaller's Chant
This commit is contained in:
parent
bb881080ac
commit
4fbc5eeddc
2 changed files with 4 additions and 0 deletions
Mage.Sets/src/mage/sets/innistrad
|
@ -33,6 +33,7 @@ import mage.Constants.Rarity;
|
|||
import mage.abilities.Mode;
|
||||
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.Filter.ComparisonScope;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
@ -47,6 +48,7 @@ public class GhoulcallersChant extends CardImpl<GhoulcallersChant> {
|
|||
|
||||
static {
|
||||
filter.getSubtype().add("Zombie");
|
||||
filter.setScopeSubtype(ComparisonScope.Any);
|
||||
}
|
||||
|
||||
public GhoulcallersChant(UUID ownerId) {
|
||||
|
|
|
@ -34,6 +34,7 @@ import mage.MageInt;
|
|||
import mage.abilities.keyword.DefenderAbility;
|
||||
import mage.abilities.keyword.ProtectionAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.Filter.ComparisonScope;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
|
||||
|
@ -47,6 +48,7 @@ public class GraveBramble extends CardImpl<GraveBramble> {
|
|||
|
||||
static {
|
||||
filter.getSubtype().add("Zombie");
|
||||
filter.setScopeSubtype(ComparisonScope.Any);
|
||||
}
|
||||
|
||||
public GraveBramble(UUID ownerId) {
|
||||
|
|
Loading…
Add table
Reference in a new issue