mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
- Reduce the likelihood of upgrading Rares to Mythics for new quests.
This commit is contained in:
@@ -91,9 +91,8 @@ public final class BoosterUtils {
|
||||
CardPrinted.Predicates.Presets.IS_MYTHIC_RARE);
|
||||
final boolean haveMythics = filterMythics.any(cardpool);
|
||||
for (int iSlot = 0; haveMythics && (iSlot < numRare); iSlot++) {
|
||||
if (MyRandom.getRandom().nextInt(7) < 1) { // a bit higher chance to
|
||||
// get
|
||||
// a mythic
|
||||
if (MyRandom.getRandom().nextInt(10) < 1) {
|
||||
// 10% chance of upgrading a Rare into a Mythic
|
||||
nRares--;
|
||||
nMythics++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user