a few more mill changes

This commit is contained in:
Evan Kranzler 2020-06-11 08:20:33 -04:00
parent 36b31d097e
commit c592542ff6
6 changed files with 7 additions and 11 deletions

View file

@ -1,4 +1,3 @@
package mage.game.command.emblems;
import mage.abilities.Ability;
@ -11,7 +10,6 @@ import mage.game.command.Emblem;
import mage.target.common.TargetOpponent;
/**
*
* @author spjspj
*/
public final class JaceTelepathUnboundEmblem extends Emblem {
@ -20,7 +18,7 @@ public final class JaceTelepathUnboundEmblem extends Emblem {
public JaceTelepathUnboundEmblem() {
this.setName("Emblem Jace");
Effect effect = new PutTopCardOfLibraryIntoGraveTargetEffect(5);
effect.setText("target opponent puts the top five cards of their library into their graveyard");
effect.setText("target opponent mills five cards");
Ability ability = new SpellCastControllerTriggeredAbility(Zone.COMMAND, effect, new FilterSpell("a spell"), false, false);
ability.addTarget(new TargetOpponent());
getAbilities().add(ability);