mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
adjust LCI booster gen DFC rarity ratio
This commit is contained in:
parent
2dffe58e41
commit
caacdc51ee
1 changed files with 1 additions and 1 deletions
|
|
@ -369,7 +369,7 @@ public final class TheLostCavernsOfIxalan extends ExpansionSet {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void addDoubleFace(List<Card> booster) {
|
protected void addDoubleFace(List<Card> booster) {
|
||||||
int rarityKey = RandomUtil.nextInt(5 + 5 + 12); // 5 C, 12 U - assume commons twice the frequency as uncommons
|
int rarityKey = RandomUtil.nextInt((5 * 3) + 12); // 5 C, 12 U - assume commons three times the frequency as uncommons
|
||||||
Rarity rarity = (rarityKey > 12) ? Rarity.COMMON : Rarity.UNCOMMON;
|
Rarity rarity = (rarityKey > 12) ? Rarity.COMMON : Rarity.UNCOMMON;
|
||||||
addToBooster(booster, getSpecialCardsByRarity(rarity));
|
addToBooster(booster, getSpecialCardsByRarity(rarity));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue