[JOU] set back booster rarity distribution to default.

This commit is contained in:
LevelX2 2014-04-18 23:38:45 +02:00
parent 9a9de3693e
commit 4c274d7fb8
2 changed files with 4 additions and 4 deletions

View file

@ -51,9 +51,9 @@ public class JourneyIntoNyx extends ExpansionSet {
this.hasBasicLands = false;
this.hasBoosters = true;
this.numBoosterLands = 0;
this.numBoosterCommon = 3;
this.numBoosterUncommon = 6;
this.numBoosterRare = 6;
this.numBoosterCommon = 11;
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 8;
}

View file

@ -55,7 +55,7 @@ public enum CardRepository {
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
private static final String VERSION_ENTITY_NAME = "card";
private static final long CARD_DB_VERSION = 26;
private static final long CARD_DB_VERSION = 27;
private final Random random = new Random();
private Dao<CardInfo, Object> cardDao;