mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed rarity for Index and Redirect cards
This commit is contained in:
parent
ab67c12e9a
commit
6531e2d569
2 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue