1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-02-18 03:00:15 +00:00

[40K] Fix Thunderwolf Cavalry putting counters on itself

This commit is contained in:
Alex W. Jackson 2022-10-28 17:58:30 -04:00
parent 3ed26a2b1f
commit 3a7b4d14fa

View file

@ -11,6 +11,7 @@ import mage.constants.SubType;
import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.predicate.mageobject.AnotherPredicate;
import java.util.UUID;
@ -22,6 +23,10 @@ public final class ThunderwolfCavalry extends CardImpl {
private static final FilterPermanent filter
= new FilterControlledCreaturePermanent("other creature you control");
static {
filter.add(AnotherPredicate.instance);
}
public ThunderwolfCavalry(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}");