- Made FoilAlwaysInCommonSlot the default choice (since all current sets use this option anyway).

- Refactored the edition definitions, now slots newer than TSP do not include the FoilAlwaysInCommonSlot line, while the older sets with foils have a FoilAlwaysInCommonSlot=False line.
- Some definition fixes related to foil generation.
This commit is contained in:
Agetian
2014-02-10 10:18:56 +00:00
parent 09b638075c
commit 01867e5352
91 changed files with 38 additions and 68 deletions

View File

@@ -287,7 +287,7 @@ public final class CardEdition implements Comparable<CardEdition> { // immutable
break;
}
res.foilChanceInBooster = section.getDouble("FoilChanceInBooster", 21.43F) / 100.0F;
res.foilAlwaysInCommonSlot = section.getBoolean("FoilAlwaysInCommonSlot", false);
res.foilAlwaysInCommonSlot = section.getBoolean("FoilAlwaysInCommonSlot", true);
return res;
}