mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix filter on Guardian of Faith
This commit is contained in:
parent
1006115912
commit
4bb39f9078
1 changed files with 4 additions and 0 deletions
|
|
@ -12,6 +12,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
/**
|
||||
|
|
@ -21,6 +22,9 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
public final class GuardianOfFaith extends CardImpl {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("other target creatures you control");
|
||||
static {
|
||||
filter.add(AnotherPredicate.instance);
|
||||
}
|
||||
|
||||
public GuardianOfFaith(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}{W}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue