diff --git a/Mage.Sets/src/mage/cards/a/AllOfHistoryAllAtOnce.java b/Mage.Sets/src/mage/cards/a/AllOfHistoryAllAtOnce.java new file mode 100644 index 00000000000..b18868a368e --- /dev/null +++ b/Mage.Sets/src/mage/cards/a/AllOfHistoryAllAtOnce.java @@ -0,0 +1,34 @@ +package mage.cards.a; + +import mage.abilities.effects.common.counter.TimeTravelEffect; +import mage.abilities.keyword.StormAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class AllOfHistoryAllAtOnce extends CardImpl { + + public AllOfHistoryAllAtOnce(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{U}{U}"); + + // Time travel. + this.getSpellAbility().addEffect(new TimeTravelEffect()); + + // Storm + this.addAbility(new StormAbility()); + } + + private AllOfHistoryAllAtOnce(final AllOfHistoryAllAtOnce card) { + super(card); + } + + @Override + public AllOfHistoryAllAtOnce copy() { + return new AllOfHistoryAllAtOnce(this); + } +} diff --git a/Mage.Sets/src/mage/sets/DoctorWho.java b/Mage.Sets/src/mage/sets/DoctorWho.java index 9cae385b125..e625d178dd2 100644 --- a/Mage.Sets/src/mage/sets/DoctorWho.java +++ b/Mage.Sets/src/mage/sets/DoctorWho.java @@ -21,6 +21,7 @@ public final class DoctorWho extends ExpansionSet { cards.add(new SetCardInfo("Ace, Fearless Rebel", 98, Rarity.RARE, mage.cards.a.AceFearlessRebel.class)); cards.add(new SetCardInfo("Adric, Mathematical Genius", 33, Rarity.RARE, mage.cards.a.AdricMathematicalGenius.class)); cards.add(new SetCardInfo("Alistair, the Brigadier", 112, Rarity.RARE, mage.cards.a.AlistairTheBrigadier.class)); + cards.add(new SetCardInfo("All of History, All at Once", 34, Rarity.RARE, mage.cards.a.AllOfHistoryAllAtOnce.class)); cards.add(new SetCardInfo("An Unearthly Child", 35, Rarity.RARE, mage.cards.a.AnUnearthlyChild.class)); cards.add(new SetCardInfo("Arcane Signet", 239, Rarity.COMMON, mage.cards.a.ArcaneSignet.class)); cards.add(new SetCardInfo("As Foretold", 214, Rarity.RARE, mage.cards.a.AsForetold.class));