mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Fixed rarity for extended cards (where it was different).
This commit is contained in:
parent
e25d0acf90
commit
9037764298
13 changed files with 22 additions and 9 deletions
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.darksteel;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class WhispersilkCloak extends mage.sets.tenth.WhispersilkCloak {
|
|||
super(ownerId);
|
||||
this.cardNumber = 160;
|
||||
this.expansionSetCode = "DST";
|
||||
this.rarity = Rarity.COMMON;
|
||||
}
|
||||
|
||||
public WhispersilkCloak(final WhispersilkCloak card) {
|
||||
|
|
|
@ -29,10 +29,7 @@
|
|||
package mage.sets.elspethvstezzeret;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -44,6 +41,7 @@ public class TrinketMage extends mage.sets.scarsofmirrodin.TrinketMage {
|
|||
super(ownerId);
|
||||
this.expansionSetCode = "DDF";
|
||||
this.cardNumber = 49;
|
||||
this.rarity = Rarity.COMMON;
|
||||
}
|
||||
|
||||
public TrinketMage (final TrinketMage card) {
|
||||
|
|
|
@ -30,10 +30,7 @@ package mage.sets.magic2010;
|
|||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.magic2011;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class ActOfTreason extends mage.sets.magic2010.ActOfTreason {
|
|||
public ActOfTreason(UUID ownerId) {
|
||||
super(ownerId);this.cardNumber = 121;
|
||||
this.expansionSetCode = "M11";
|
||||
this.rarity = Rarity.COMMON;
|
||||
}
|
||||
|
||||
public ActOfTreason(final ActOfTreason card) {
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.magic2011;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -40,6 +41,7 @@ public class PlatinumAngel extends mage.sets.magic2010.PlatinumAngel {
|
|||
super(ownerId);
|
||||
this.cardNumber = 212;
|
||||
this.expansionSetCode = "M11";
|
||||
this.rarity = Rarity.MYTHIC;
|
||||
}
|
||||
|
||||
public PlatinumAngel(final PlatinumAngel card) {
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.magic2011;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -40,6 +41,7 @@ public class ProdigalPyromancer extends mage.sets.magic2010.ProdigalPyromancer {
|
|||
super(ownerId);
|
||||
this.cardNumber = 152;
|
||||
this.expansionSetCode = "M11";
|
||||
this.rarity = Rarity.UNCOMMON;
|
||||
}
|
||||
|
||||
public ProdigalPyromancer(final ProdigalPyromancer card) {
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.magic2012;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class ActOfTreason extends mage.sets.magic2010.ActOfTreason {
|
|||
super(ownerId);
|
||||
this.cardNumber = 121;
|
||||
this.expansionSetCode = "M12";
|
||||
this.rarity = Rarity.COMMON;
|
||||
}
|
||||
|
||||
public ActOfTreason(final ActOfTreason card) {
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.magic2012;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class OblivionRing extends mage.sets.shardsofalara.OblivionRing {
|
|||
super(ownerId);
|
||||
this.cardNumber = 27;
|
||||
this.expansionSetCode = "M12";
|
||||
this.rarity = Rarity.UNCOMMON;
|
||||
}
|
||||
|
||||
public OblivionRing(final OblivionRing card) {
|
||||
|
|
|
@ -30,9 +30,7 @@ package mage.sets.mirrodin;
|
|||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Duration;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -48,7 +46,7 @@ public class LeoninSkyhunter extends CardImpl<LeoninSkyhunter> {
|
|||
this.expansionSetCode = "MRD";
|
||||
this.subtype.add("Cat");
|
||||
this.subtype.add("Knight");
|
||||
this.color.setWhite(true);
|
||||
|
||||
this.color.setWhite(true);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
package mage.sets.mirrodinbesieged;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -40,6 +41,7 @@ public class LeoninSkyhunter extends mage.sets.mirrodin.LeoninSkyhunter {
|
|||
super(ownerId);
|
||||
this.cardNumber = 11;
|
||||
this.expansionSetCode = "MBS";
|
||||
this.rarity = Rarity.COMMON;
|
||||
}
|
||||
|
||||
public LeoninSkyhunter (final LeoninSkyhunter card) {
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.tenth;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class DrudgeSkeletons extends mage.sets.magic2010.DrudgeSkeletons {
|
|||
super(ownerId);
|
||||
this.cardNumber = 139;
|
||||
this.expansionSetCode = "10E";
|
||||
this.rarity = Rarity.UNCOMMON;
|
||||
}
|
||||
|
||||
public DrudgeSkeletons(final DrudgeSkeletons card) {
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.tenth;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class SoulWarden extends mage.sets.magic2010.SoulWarden {
|
|||
super(ownerId);
|
||||
this.cardNumber = 44;
|
||||
this.expansionSetCode = "10E";
|
||||
this.rarity = Rarity.UNCOMMON;
|
||||
}
|
||||
|
||||
public SoulWarden(final SoulWarden card) {
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.tenth;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,6 +40,7 @@ public class TangleSpider extends mage.sets.darksteel.TangleSpider {
|
|||
super(ownerId);
|
||||
this.cardNumber = 303;
|
||||
this.expansionSetCode = "10E";
|
||||
this.rarity = Rarity.UNCOMMON;
|
||||
}
|
||||
|
||||
public TangleSpider(final TangleSpider card) {
|
||||
|
|
Loading…
Reference in a new issue