mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fix Tekuthal, Inquiry Dominus
This commit is contained in:
parent
e98ed29e29
commit
12841d9b4b
1 changed files with 6 additions and 2 deletions
|
@ -8,6 +8,7 @@ import mage.abilities.costs.common.RemoveCounterCost;
|
||||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
import mage.abilities.effects.ReplacementEffectImpl;
|
import mage.abilities.effects.ReplacementEffectImpl;
|
||||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||||
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.*;
|
import mage.constants.*;
|
||||||
|
@ -28,7 +29,7 @@ import java.util.UUID;
|
||||||
public final class TekuthalInquiryDominus extends CardImpl {
|
public final class TekuthalInquiryDominus extends CardImpl {
|
||||||
|
|
||||||
private static final FilterControlledPermanent filter
|
private static final FilterControlledPermanent filter
|
||||||
= new FilterControlledPermanent("other artifacts, creatures, and planeswalkers");
|
= new FilterControlledPermanent("other artifacts, creatures, and planeswalkers you control");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(AnotherPredicate.instance);
|
filter.add(AnotherPredicate.instance);
|
||||||
|
@ -48,6 +49,9 @@ public final class TekuthalInquiryDominus extends CardImpl {
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(5);
|
this.toughness = new MageInt(5);
|
||||||
|
|
||||||
|
// Flying
|
||||||
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
// If you would proliferate, proliferate twice instead.
|
// If you would proliferate, proliferate twice instead.
|
||||||
this.addAbility(new SimpleStaticAbility(new TekuthalInquiryDominusEffect()));
|
this.addAbility(new SimpleStaticAbility(new TekuthalInquiryDominusEffect()));
|
||||||
|
|
||||||
|
@ -56,7 +60,7 @@ public final class TekuthalInquiryDominus extends CardImpl {
|
||||||
ability.addCost(new RemoveCounterCost(new TargetPermanent(
|
ability.addCost(new RemoveCounterCost(new TargetPermanent(
|
||||||
0, Integer.MAX_VALUE,
|
0, Integer.MAX_VALUE,
|
||||||
filter
|
filter
|
||||||
), null, 3));
|
), null, 3).setText("Remove three counters from among " + filter.getMessage()));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue