mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
added missing hint
This commit is contained in:
parent
77974ed99b
commit
9e0dbe5fd5
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ import mage.abilities.common.AttacksTriggeredAbility;
|
|||
import mage.abilities.dynamicvalue.common.PartyCount;
|
||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.abilities.hint.common.PartyCountHint;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
|
@ -33,7 +34,7 @@ public final class GrotagBugCatcher extends CardImpl {
|
|||
// Whenever Grotag Bug-Catcher attacks, it gets +1/+0 until end of turn for each creature in your party.
|
||||
this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(
|
||||
PartyCount.instance, StaticValue.get(0), Duration.EndOfTurn, true
|
||||
), false));
|
||||
), false).addHint(PartyCountHint.instance));
|
||||
}
|
||||
|
||||
private GrotagBugCatcher(final GrotagBugCatcher card) {
|
||||
|
|
Loading…
Reference in a new issue