- Set the default foil chance in booster to 16% (approximately 1/6) which seems to be the average for the majority of sets. Can be overridden in edition definition files via FoilChanceInBooster option. Not currently used by the booster generator.

This commit is contained in:
Agetian
2013-07-02 17:09:26 +00:00
parent 4aed00d954
commit ba3bb79b52

View File

@@ -338,7 +338,7 @@ public final class CardEdition implements Comparable<CardEdition> { // immutable
res.foilType = FoilType.NOT_SUPPORTED; res.foilType = FoilType.NOT_SUPPORTED;
break; break;
} }
res.foilChanceInBooster = section.getInt("FoilChanceInBooster", 0); res.foilChanceInBooster = section.getInt("FoilChanceInBooster", 16);
return res; return res;
} }