mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[ALA] fixed Mighty Emergence counter type (fixes #7996)
This commit is contained in:
parent
2f7d22426a
commit
c46812f380
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public final class MightyEmergence extends CardImpl {
|
|||
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{2}{G}");
|
||||
|
||||
// Whenever a creature with power 5 or greater enters the battlefield under your control, you may put two +1/+1 counters on it.
|
||||
Effect effect = new AddCountersTargetEffect(CounterType.P2P2.createInstance());
|
||||
Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance(2));
|
||||
effect.setText("you may put two +1/+1 counters on it");
|
||||
this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, effect, filter, true, SetTargetPointer.PERMANENT, "", true));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue