Fix some incorrect card data

This commit is contained in:
Neil Gentleman 2016-07-15 21:23:39 -07:00
parent 47ed193dff
commit 1a95e2021a
8 changed files with 8 additions and 6 deletions

View file

@ -45,7 +45,7 @@ public class ContingencyPlan extends CardImpl {
public ContingencyPlan(UUID ownerId) { public ContingencyPlan(UUID ownerId) {
super(ownerId, 52, "Contingency Plan", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{1}{U}"); super(ownerId, 52, "Contingency Plan", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{1}{U}");
this.expansionSetCode = "EMN"; 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. // 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), this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(new StaticValue(5), false, new StaticValue(5),

View file

@ -51,6 +51,7 @@ public class SelflessSpirit extends CardImpl {
super(ownerId, 40, "Selfless Spirit", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{W}"); super(ownerId, 40, "Selfless Spirit", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{W}");
this.expansionSetCode = "EMN"; this.expansionSetCode = "EMN";
this.subtype.add("Spirit"); this.subtype.add("Spirit");
this.subtype.add("Cleric");
this.power = new MageInt(2); this.power = new MageInt(2);
this.toughness = new MageInt(1); this.toughness = new MageInt(1);

View file

@ -56,7 +56,7 @@ public class WharfInfiltrator extends CardImpl {
public WharfInfiltrator(UUID ownerId) { public WharfInfiltrator(UUID ownerId) {
super(ownerId, 80, "Wharf Infiltrator", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{U}"); super(ownerId, 80, "Wharf Infiltrator", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{U}");
this.expansionSetCode = "EMN"; this.expansionSetCode = "EMN";
this.subtype.add("Eldrazi"); this.subtype.add("Human");
this.subtype.add("Horror"); this.subtype.add("Horror");
this.power = new MageInt(1); this.power = new MageInt(1);
this.toughness = new MageInt(1); this.toughness = new MageInt(1);

View file

@ -48,7 +48,7 @@ public class TurtleshellChangeling extends CardImpl {
public TurtleshellChangeling(UUID ownerId) { public TurtleshellChangeling(UUID ownerId) {
super(ownerId, 94, "Turtleshell Changeling", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}"); super(ownerId, 94, "Turtleshell Changeling", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
this.expansionSetCode = "LRW"; this.expansionSetCode = "LRW";
this.subtype.add("Shapesifter"); this.subtype.add("Shapeshifter");
this.power = new MageInt(1); this.power = new MageInt(1);
this.toughness = new MageInt(4); this.toughness = new MageInt(4);

View file

@ -61,7 +61,7 @@ public class AlexiZephyrMage extends CardImpl {
} }
public AlexiZephyrMage(UUID ownerId) { 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.expansionSetCode = "PCY";
this.supertype.add("Legendary"); this.supertype.add("Legendary");
this.subtype.add("Human"); this.subtype.add("Human");

View file

@ -57,7 +57,7 @@ public class FalkenrathGorger extends CardImpl {
super(ownerId, 155, "Falkenrath Gorger", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{R}"); super(ownerId, 155, "Falkenrath Gorger", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{R}");
this.expansionSetCode = "SOI"; this.expansionSetCode = "SOI";
this.subtype.add("Vampire"); this.subtype.add("Vampire");
this.subtype.add("Warrior"); this.subtype.add("Berserker");
this.power = new MageInt(2); this.power = new MageInt(2);
this.toughness = new MageInt(1); this.toughness = new MageInt(1);

View file

@ -47,7 +47,7 @@ public class InexorableBlob extends CardImpl {
public InexorableBlob(UUID ownerId) { public InexorableBlob(UUID ownerId) {
super(ownerId, 212, "Inexorable Blob", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{G}"); super(ownerId, 212, "Inexorable Blob", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{G}");
this.expansionSetCode = "SOI"; this.expansionSetCode = "SOI";
this.subtype.add("Oooze"); this.subtype.add("Ooze");
this.power = new MageInt(3); this.power = new MageInt(3);
this.toughness = new MageInt(3); this.toughness = new MageInt(3);

View file

@ -64,6 +64,7 @@ public class InfectiousCurse extends CardImpl {
this.expansionSetCode = "SOI"; this.expansionSetCode = "SOI";
this.subtype.add("Aura"); this.subtype.add("Aura");
this.subtype.add("Curse"); this.subtype.add("Curse");
this.color.setBlack(true);
this.nightCard = true; this.nightCard = true;
this.canTransform = true; this.canTransform = true;