1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

fixed Commander's Insignia implementation

This commit is contained in:
Evan Kranzler 2019-08-08 08:00:13 -04:00
parent b0e9ee21c5
commit 3174dd2b39

View file

@ -1,6 +1,7 @@
package mage.cards.c;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.continuous.BoostControlledEffect;
@ -24,9 +25,9 @@ public final class CommandersInsignia extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{W}{W}");
// Creatures you control get +1/+1 for each time you've cast your commander from the command zone this game.
this.getSpellAbility().addEffect(new BoostControlledEffect(
this.addAbility(new SimpleStaticAbility(new BoostControlledEffect(
CommandersInsigniaValue.instance, CommandersInsigniaValue.instance, Duration.WhileOnBattlefield
).setText("Creatures you control get +1/+1 for each time you've cast your commander from the command zone this game."));
).setText("Creatures you control get +1/+1 for each time you've cast your commander from the command zone this game.")));
}
private CommandersInsignia(final CommandersInsignia card) {