Implemented Nissa, Who Shakes the World

This commit is contained in:
Evan Kranzler 2019-04-13 12:56:33 -04:00
parent 15d389a5ba
commit b28bef8f62
4 changed files with 179 additions and 2 deletions

View file

@ -14,7 +14,6 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
import mage.game.command.Emblem;
/**
*
* @author spjspj
*/
public final class ElspethKnightErrantEmblem extends Emblem {
@ -28,7 +27,7 @@ public final class ElspethKnightErrantEmblem extends Emblem {
new CardTypePredicate(CardType.ENCHANTMENT),
new CardTypePredicate(CardType.LAND)));
Effect effect = new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.WhileOnBattlefield, filter, false);
effect.setText("Artifacts, creatures, enchantments, and lands you control are indestructible");
effect.setText("Artifacts, creatures, enchantments, and lands you control have indestructible");
this.getAbilities().add(new SimpleStaticAbility(Zone.COMMAND, effect));
this.setExpansionSetCodeForImage("MMA");
}