diff --git a/Mage.Sets/src/mage/sets/timeshifted/Dragonstorm.java b/Mage.Sets/src/mage/sets/timeshifted/Dragonstorm.java index 13173c7171..8f9b653ad7 100644 --- a/Mage.Sets/src/mage/sets/timeshifted/Dragonstorm.java +++ b/Mage.Sets/src/mage/sets/timeshifted/Dragonstorm.java @@ -28,11 +28,11 @@ package mage.sets.timeshifted; import java.util.UUID; -import mage.constants.CardType; -import mage.constants.Rarity; import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect; import mage.abilities.keyword.StormAbility; import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; import mage.filter.common.FilterPermanentCard; import mage.filter.predicate.mageobject.SubtypePredicate; import mage.target.common.TargetCardInLibrary; @@ -43,17 +43,15 @@ import mage.target.common.TargetCardInLibrary; */ public class Dragonstorm extends CardImpl { - private static final FilterPermanentCard filter = new FilterPermanentCard("Dragon permanent card"); static { filter.add(new SubtypePredicate("Dragon")); } - - public Dragonstorm(UUID ownerId) { - super(ownerId, 60, "Dragonstorm", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{8}{R}"); - this.expansionSetCode = "TSB"; + public Dragonstorm(UUID ownerId) { + super(ownerId, 60, "Dragonstorm", Rarity.SPECIAL, new CardType[]{CardType.SORCERY}, "{8}{R}"); + this.expansionSetCode = "TSB"; // Search your library for a Dragon permanent card and put it onto the battlefield. Then shuffle your library. this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), false));