* Traumatize, Bond of Insights, Enter The God-Etrenals and Flint Golem - Changed to mill method.

This commit is contained in:
LevelX2 2020-07-18 17:27:15 +02:00
parent ba31b956dc
commit 5decfa3964
8 changed files with 25 additions and 36 deletions

View file

@ -14,9 +14,8 @@ import mage.players.Player;
import mage.util.CardUtil;
/**
* If you would draw a card, instead you may put exactly X cards from the top of
* your library into your graveyard. If you do, return this card from your
* graveyard to your hand. Otherwise, draw a card.
* If you would draw a card, you may mill X cards instead. If you do, return
* this card from your graveyard to your hand.
*
* @author North
*/
@ -73,7 +72,7 @@ class DredgeEffect extends ReplacementEffectImpl {
if (owner != null
&& owner.getLibrary().size() >= amount
&& owner.chooseUse(outcome, new StringBuilder("Dredge ").append(sourceCard.getLogName()).
append("? (").append(amount).append(" cards go from top of library to graveyard)").toString(), source, game)) {
append("? (").append(amount).append(" cards are milled)").toString(), source, game)) {
if (!game.isSimulation()) {
game.informPlayers(new StringBuilder(owner.getLogName()).append(" dredges ").append(sourceCard.getLogName()).toString());
}