mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Fixed collector numbers of basic lands in DD: Blessed vs Cursed.
This commit is contained in:
parent
308c485a67
commit
e77817b67a
7 changed files with 7 additions and 7 deletions
|
@ -37,7 +37,7 @@ import mage.cards.decks.DeckValidator;
|
|||
public class Freeform extends DeckValidator {
|
||||
|
||||
public Freeform() {
|
||||
super("Freeform");
|
||||
super("Constructed - Freeform");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Island1 extends mage.cards.basiclands.Island {
|
||||
|
||||
public Island1(UUID ownerId) {
|
||||
super(ownerId, 38);
|
||||
super(ownerId, 35);
|
||||
this.expansionSetCode = "DDQ";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Island2 extends mage.cards.basiclands.Island {
|
||||
|
||||
public Island2(UUID ownerId) {
|
||||
super(ownerId, 39);
|
||||
super(ownerId, 36);
|
||||
this.expansionSetCode = "DDQ";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Island3 extends mage.cards.basiclands.Island {
|
||||
|
||||
public Island3(UUID ownerId) {
|
||||
super(ownerId, 40);
|
||||
super(ownerId, 37);
|
||||
this.expansionSetCode = "DDQ";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Plains1 extends mage.cards.basiclands.Plains {
|
||||
|
||||
public Plains1(UUID ownerId) {
|
||||
super(ownerId, 35);
|
||||
super(ownerId, 38);
|
||||
this.expansionSetCode = "DDQ";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Plains2 extends mage.cards.basiclands.Plains {
|
||||
|
||||
public Plains2(UUID ownerId) {
|
||||
super(ownerId, 36);
|
||||
super(ownerId, 39);
|
||||
this.expansionSetCode = "DDQ";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Plains3 extends mage.cards.basiclands.Plains {
|
||||
|
||||
public Plains3(UUID ownerId) {
|
||||
super(ownerId, 37);
|
||||
super(ownerId, 40);
|
||||
this.expansionSetCode = "DDQ";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue