mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[JOU] set back booster rarity distribution to default.
This commit is contained in:
parent
9a9de3693e
commit
4c274d7fb8
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue