mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
Fix some incorrect card data
This commit is contained in:
parent
47ed193dff
commit
1a95e2021a
8 changed files with 8 additions and 6 deletions
|
@ -45,7 +45,7 @@ public class ContingencyPlan extends CardImpl {
|
|||
public ContingencyPlan(UUID ownerId) {
|
||||
super(ownerId, 52, "Contingency Plan", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{1}{U}");
|
||||
this.expansionSetCode = "EMN";
|
||||
this.supertype.add("SOrcery");
|
||||
this.supertype.add("Sorcery");
|
||||
|
||||
// Look at the top five cards of your library. Put any number of them into your graveyard and the rest back on top of your library in any order.
|
||||
this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(new StaticValue(5), false, new StaticValue(5),
|
||||
|
|
|
@ -51,6 +51,7 @@ public class SelflessSpirit extends CardImpl {
|
|||
super(ownerId, 40, "Selfless Spirit", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
this.expansionSetCode = "EMN";
|
||||
this.subtype.add("Spirit");
|
||||
this.subtype.add("Cleric");
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ public class WharfInfiltrator extends CardImpl {
|
|||
public WharfInfiltrator(UUID ownerId) {
|
||||
super(ownerId, 80, "Wharf Infiltrator", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
this.expansionSetCode = "EMN";
|
||||
this.subtype.add("Eldrazi");
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Horror");
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
|
|
@ -48,7 +48,7 @@ public class TurtleshellChangeling extends CardImpl {
|
|||
public TurtleshellChangeling(UUID ownerId) {
|
||||
super(ownerId, 94, "Turtleshell Changeling", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
this.expansionSetCode = "LRW";
|
||||
this.subtype.add("Shapesifter");
|
||||
this.subtype.add("Shapeshifter");
|
||||
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(4);
|
||||
|
|
|
@ -61,7 +61,7 @@ public class AlexiZephyrMage extends CardImpl {
|
|||
}
|
||||
|
||||
public AlexiZephyrMage(UUID ownerId) {
|
||||
super(ownerId, 28, "Alexi, Zephyr Mage", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
super(ownerId, 28, "Alexi, Zephyr Mage", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}{U}");
|
||||
this.expansionSetCode = "PCY";
|
||||
this.supertype.add("Legendary");
|
||||
this.subtype.add("Human");
|
||||
|
|
|
@ -57,7 +57,7 @@ public class FalkenrathGorger extends CardImpl {
|
|||
super(ownerId, 155, "Falkenrath Gorger", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{R}");
|
||||
this.expansionSetCode = "SOI";
|
||||
this.subtype.add("Vampire");
|
||||
this.subtype.add("Warrior");
|
||||
this.subtype.add("Berserker");
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ public class InexorableBlob extends CardImpl {
|
|||
public InexorableBlob(UUID ownerId) {
|
||||
super(ownerId, 212, "Inexorable Blob", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
this.expansionSetCode = "SOI";
|
||||
this.subtype.add("Oooze");
|
||||
this.subtype.add("Ooze");
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
|
|
|
@ -64,6 +64,7 @@ public class InfectiousCurse extends CardImpl {
|
|||
this.expansionSetCode = "SOI";
|
||||
this.subtype.add("Aura");
|
||||
this.subtype.add("Curse");
|
||||
this.color.setBlack(true);
|
||||
|
||||
this.nightCard = true;
|
||||
this.canTransform = true;
|
||||
|
|
Loading…
Reference in a new issue