mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
Add hint to Pygmy Kavu
This commit is contained in:
parent
9723e70526
commit
74b0784baf
1 changed files with 4 additions and 1 deletions
|
|
@ -7,6 +7,7 @@ import mage.ObjectColor;
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||||
|
import mage.abilities.hint.ValueHint;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
|
@ -35,7 +36,9 @@ public final class PygmyKavu extends CardImpl {
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// When Pygmy Kavu enters the battlefield, draw a card for each black creature your opponents control.
|
// When Pygmy Kavu enters the battlefield, draw a card for each black creature your opponents control.
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(new PermanentsOnBattlefieldCount(filter))));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(new PermanentsOnBattlefieldCount(filter)))
|
||||||
|
.addHint(new ValueHint("Black creatures your opponents control", new PermanentsOnBattlefieldCount(filter)))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private PygmyKavu(final PygmyKavu card) {
|
private PygmyKavu(final PygmyKavu card) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue