From b575357b971aa37d6765911b852e20b99ddeebd9 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Fri, 5 Apr 2019 13:34:11 +0400 Subject: [PATCH] * The Big Idea - fixed that two dice effect activated until end of turn instead until next usage (#4501); --- Mage.Sets/src/mage/cards/t/TheBigIdea.java | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TheBigIdea.java b/Mage.Sets/src/mage/cards/t/TheBigIdea.java index 2ab0e150ab0..8a3a85ea197 100644 --- a/Mage.Sets/src/mage/cards/t/TheBigIdea.java +++ b/Mage.Sets/src/mage/cards/t/TheBigIdea.java @@ -1,7 +1,5 @@ - package mage.cards.t; -import java.util.UUID; import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; @@ -13,12 +11,7 @@ import mage.abilities.effects.ReplacementEffectImpl; import mage.abilities.effects.common.CreateTokenEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; -import mage.constants.CardType; -import mage.constants.Duration; -import mage.constants.Outcome; -import mage.constants.SubType; -import mage.constants.SuperType; -import mage.constants.Zone; +import mage.constants.*; import mage.filter.common.FilterControlledCreaturePermanent; import mage.filter.predicate.Predicates; import mage.filter.predicate.permanent.TappedPredicate; @@ -29,8 +22,9 @@ import mage.game.permanent.token.BrainiacToken; import mage.players.Player; import mage.target.common.TargetControlledCreaturePermanent; +import java.util.UUID; + /** - * * @author spjspj */ public final class TheBigIdea extends CardImpl { @@ -72,7 +66,7 @@ public final class TheBigIdea extends CardImpl { class TheBigIdeaReplacementEffect extends ReplacementEffectImpl { TheBigIdeaReplacementEffect() { - super(Duration.EndOfTurn, Outcome.Damage); + super(Duration.OneUse, Outcome.Damage); staticText = "The next time you would roll a six-sided die, instead roll two six-sided dice and use the total of those results"; }