From 6531e2d5699eac8f4a1d12d3293939739bbe9a79 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Mon, 20 Aug 2012 09:27:23 +0400 Subject: [PATCH] Fixed rarity for Index and Redirect cards --- Mage.Sets/src/mage/sets/apocalypse/Index.java | 2 +- Mage.Sets/src/mage/sets/magic2011/Redirect.java | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/apocalypse/Index.java b/Mage.Sets/src/mage/sets/apocalypse/Index.java index af8b033517b..10b250e2bd1 100644 --- a/Mage.Sets/src/mage/sets/apocalypse/Index.java +++ b/Mage.Sets/src/mage/sets/apocalypse/Index.java @@ -41,7 +41,7 @@ import java.util.UUID; public class Index extends CardImpl { public Index(UUID ownerId) { - super(ownerId, 25, "Index", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{U}"); + super(ownerId, 25, "Index", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{U}"); this.expansionSetCode = "APC"; this.color.setBlue(true); diff --git a/Mage.Sets/src/mage/sets/magic2011/Redirect.java b/Mage.Sets/src/mage/sets/magic2011/Redirect.java index 018e6ecaa0c..e40d242cbab 100644 --- a/Mage.Sets/src/mage/sets/magic2011/Redirect.java +++ b/Mage.Sets/src/mage/sets/magic2011/Redirect.java @@ -28,13 +28,14 @@ package mage.sets.magic2011; -import java.util.UUID; import mage.Constants.CardType; import mage.Constants.Rarity; import mage.abilities.effects.common.ChooseNewTargetsTargetEffect; import mage.cards.CardImpl; import mage.target.TargetSpell; +import java.util.UUID; + /** * * @author BetaSteward_at_googlemail.com @@ -42,7 +43,7 @@ import mage.target.TargetSpell; public class Redirect extends CardImpl { public Redirect(UUID ownerId) { - super(ownerId, 71, "Redirect", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}{U}"); + super(ownerId, 71, "Redirect", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{U}{U}"); this.expansionSetCode = "M11"; this.color.setBlue(true); this.getSpellAbility().addTarget(new TargetSpell());