mirror of
https://github.com/correl/mage.git
synced 2025-03-16 09:16:26 -09:00
* Swamps of Ice Age set - Corrected wrong collector numbers (were shown as Sulforous Springs).
This commit is contained in:
parent
c9392d5eed
commit
ea7bfdfc21
4 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
||||||
public class Swamp1 extends mage.cards.basiclands.Swamp {
|
public class Swamp1 extends mage.cards.basiclands.Swamp {
|
||||||
|
|
||||||
public Swamp1(UUID ownerId) {
|
public Swamp1(UUID ownerId) {
|
||||||
super(ownerId, 351);
|
super(ownerId, 353);
|
||||||
this.expansionSetCode = "ICE";
|
this.expansionSetCode = "ICE";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
||||||
public class Swamp2 extends mage.cards.basiclands.Swamp {
|
public class Swamp2 extends mage.cards.basiclands.Swamp {
|
||||||
|
|
||||||
public Swamp2(UUID ownerId) {
|
public Swamp2(UUID ownerId) {
|
||||||
super(ownerId, 352);
|
super(ownerId, 354);
|
||||||
this.expansionSetCode = "ICE";
|
this.expansionSetCode = "ICE";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
||||||
public class Swamp3 extends mage.cards.basiclands.Swamp {
|
public class Swamp3 extends mage.cards.basiclands.Swamp {
|
||||||
|
|
||||||
public Swamp3(UUID ownerId) {
|
public Swamp3(UUID ownerId) {
|
||||||
super(ownerId, 353);
|
super(ownerId, 355);
|
||||||
this.expansionSetCode = "ICE";
|
this.expansionSetCode = "ICE";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@ public enum CardRepository {
|
||||||
instance;
|
instance;
|
||||||
|
|
||||||
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
|
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
|
||||||
private static final long DB_VERSION = 7;
|
private static final long DB_VERSION = 8;
|
||||||
|
|
||||||
private Random random = new Random();
|
private Random random = new Random();
|
||||||
private Dao<CardInfo, Object> cardDao;
|
private Dao<CardInfo, Object> cardDao;
|
||||||
|
|
Loading…
Add table
Reference in a new issue