From f3cfc663ac7ea6bcedd623f24d8ffed688313d89 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 10 Apr 2023 15:52:11 +0400 Subject: [PATCH] [MOM] fixed Wrenn and Realmbreaker (mill and next turn, see #10200) --- Mage.Sets/src/mage/cards/w/WrennAndRealmbreaker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/w/WrennAndRealmbreaker.java b/Mage.Sets/src/mage/cards/w/WrennAndRealmbreaker.java index 705eec7322..4da7d16492 100644 --- a/Mage.Sets/src/mage/cards/w/WrennAndRealmbreaker.java +++ b/Mage.Sets/src/mage/cards/w/WrennAndRealmbreaker.java @@ -50,13 +50,13 @@ public final class WrennAndRealmbreaker extends CardImpl { ).withAbility(VigilanceAbility.getInstance()) .withAbility(HexproofAbility.getInstance()) .withAbility(HasteAbility.getInstance()), - false, true, Duration.UntilYourNextEndStep + false, true, Duration.UntilYourNextTurn ), 1); ability.addTarget(new TargetPermanent(0, 1, StaticFilters.FILTER_CONTROLLED_PERMANENT_LAND)); this.addAbility(ability); // -2: Mill three cards. You may put a permanent card from among the milled cards into your hand. - this.addAbility(new LoyaltyAbility(new MillThenPutInHandEffect(5, StaticFilters.FILTER_CARD_A_PERMANENT), -2)); + this.addAbility(new LoyaltyAbility(new MillThenPutInHandEffect(3, StaticFilters.FILTER_CARD_A_PERMANENT), -2)); // -7: You get an emblem with "You may play lands and cast permanent spells from your graveyard." this.addAbility(new LoyaltyAbility(new GetEmblemEffect(new WrennAndRealmbreakerEmblem()), -7));