mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
Add hint to Krenko, Mob Boss
This commit is contained in:
parent
1c76f79fb6
commit
99756dba7f
1 changed files with 2 additions and 1 deletions
|
|
@ -7,6 +7,7 @@ import mage.abilities.costs.common.TapSourceCost;
|
||||||
import mage.abilities.dynamicvalue.DynamicValue;
|
import mage.abilities.dynamicvalue.DynamicValue;
|
||||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||||
import mage.abilities.effects.common.CreateTokenEffect;
|
import mage.abilities.effects.common.CreateTokenEffect;
|
||||||
|
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;
|
||||||
|
|
@ -37,7 +38,7 @@ public final class KrenkoMobBoss extends CardImpl {
|
||||||
this.addAbility(new SimpleActivatedAbility(
|
this.addAbility(new SimpleActivatedAbility(
|
||||||
new CreateTokenEffect(new GoblinToken(), xValue).setText("create X 1/1 red Goblin creature tokens, where X is the number of Goblins you control"),
|
new CreateTokenEffect(new GoblinToken(), xValue).setText("create X 1/1 red Goblin creature tokens, where X is the number of Goblins you control"),
|
||||||
new TapSourceCost()
|
new TapSourceCost()
|
||||||
));
|
).addHint(new ValueHint("Goblins you control", xValue)));
|
||||||
}
|
}
|
||||||
|
|
||||||
private KrenkoMobBoss(final KrenkoMobBoss card) {
|
private KrenkoMobBoss(final KrenkoMobBoss card) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue