mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[AFR] Add hint to Hobgoblin Bandit Lord (#10069)
This commit is contained in:
parent
0a633a8318
commit
11f10fb34f
1 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,7 @@ import mage.abilities.dynamicvalue.DynamicValue;
|
|||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||
import mage.abilities.hint.ValueHint;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -52,6 +53,7 @@ public final class HobgoblinBanditLord extends CardImpl {
|
|||
);
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addTarget(new TargetAnyTarget());
|
||||
ability.addHint(new ValueHint("Goblins that entered the battlefield under your control this turn", GoblinsEnteredThisTurnDynamicValue.instance));
|
||||
this.addAbility(ability, new PermanentsEnteredBattlefieldWatcher());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue