Fixed rarity for Index and Redirect cards

This commit is contained in:
magenoxx 2012-08-20 09:27:23 +04:00
parent ab67c12e9a
commit 6531e2d569
2 changed files with 4 additions and 3 deletions

View file

@ -41,7 +41,7 @@ import java.util.UUID;
public class Index extends CardImpl<Index> {
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);

View file

@ -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<Redirect> {
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());