mirror of
https://github.com/correl/mage.git
synced 2025-04-12 17:00:08 -09:00
[STX] small change to lesson rarity distribution
This commit is contained in:
parent
ffee1ecd7b
commit
5fb24d3930
1 changed files with 6 additions and 4 deletions
|
@ -448,10 +448,10 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
||||||
private void addLesson(List<Card> booster) {
|
private void addLesson(List<Card> booster) {
|
||||||
// Boosters have one Lesson card
|
// Boosters have one Lesson card
|
||||||
final Rarity rarity;
|
final Rarity rarity;
|
||||||
int i = RandomUtil.nextInt(121);
|
int i = RandomUtil.nextInt(148);
|
||||||
if (i < 2) {
|
if (i == 0) {
|
||||||
rarity = Rarity.MYTHIC;
|
rarity = Rarity.MYTHIC;
|
||||||
} else if (i < 22) {
|
} else if (i < 11) {
|
||||||
rarity = Rarity.RARE;
|
rarity = Rarity.RARE;
|
||||||
} else {
|
} else {
|
||||||
rarity = Rarity.COMMON;
|
rarity = Rarity.COMMON;
|
||||||
|
@ -603,9 +603,11 @@ class StrixhavenSchoolOfMagesCollator implements BoosterCollator {
|
||||||
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
||||||
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
||||||
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
||||||
|
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
||||||
|
StrixhavenSchoolOfMagesStructure.L1, StrixhavenSchoolOfMagesStructure.L1,
|
||||||
StrixhavenSchoolOfMagesStructure.L1,
|
StrixhavenSchoolOfMagesStructure.L1,
|
||||||
|
|
||||||
StrixhavenSchoolOfMagesStructure.L2, StrixhavenSchoolOfMagesStructure.L2
|
StrixhavenSchoolOfMagesStructure.L2
|
||||||
);
|
);
|
||||||
private final RarityConfiguration archiveRuns = new RarityConfiguration(
|
private final RarityConfiguration archiveRuns = new RarityConfiguration(
|
||||||
false,
|
false,
|
||||||
|
|
Loading…
Add table
Reference in a new issue