1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-08 09:11:04 -09:00

[KHM] fixed some issues with pack collation (fixes )

This commit is contained in:
Evan Kranzler 2021-02-03 09:09:30 -05:00
parent c381ea7716
commit fb447d7740

View file

@ -30,14 +30,14 @@ public final class Kaldheim extends ExpansionSet {
this.hasBasicLands = true;
this.hasBoosters = true;
this.numBoosterLands = 1;
this.numBoosterCommon = 9;
this.numBoosterCommon = 10;
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 8;
this.numBoosterDoubleFaced = 1;
this.maxCardNumberInBooster = 285;
this.ratioBoosterSpecialLand = 12; // TODO: change when actual ratio is known
this.ratioBoosterSpecialLandNumerator = 5; // TODO: change when actual ratio is known
this.ratioBoosterSpecialLand = 12;
this.ratioBoosterSpecialLandNumerator = 5;
cards.add(new SetCardInfo("Absorb Identity", 383, Rarity.UNCOMMON, mage.cards.a.AbsorbIdentity.class));
cards.add(new SetCardInfo("Aegar, the Freezing Flame", 200, Rarity.UNCOMMON, mage.cards.a.AegarTheFreezingFlame.class, NON_FULL_USE_VARIOUS));
@ -474,7 +474,7 @@ public final class Kaldheim extends ExpansionSet {
if (savedSpecialLand.isEmpty()) {
CardCriteria criteria = new CardCriteria();
criteria.setCodes(this.code);
criteria.rarities(Rarity.COMMON);
criteria.rarities(Rarity.COMMON, Rarity.LAND);
criteria.types(CardType.LAND);
criteria.supertypes("Snow");
savedSpecialLand.addAll(CardRepository.instance.findCards(criteria));