diff --git a/Mage.Sets/src/mage/sets/JourneyIntoNyx.java b/Mage.Sets/src/mage/sets/JourneyIntoNyx.java index 3568fe1a98..c5252356ea 100644 --- a/Mage.Sets/src/mage/sets/JourneyIntoNyx.java +++ b/Mage.Sets/src/mage/sets/JourneyIntoNyx.java @@ -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; } diff --git a/Mage/src/mage/cards/repository/CardRepository.java b/Mage/src/mage/cards/repository/CardRepository.java index 0439617134..7b9dca87c2 100644 --- a/Mage/src/mage/cards/repository/CardRepository.java +++ b/Mage/src/mage/cards/repository/CardRepository.java @@ -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 cardDao;