- Generate basic land cards with random art in quest mode starting pool and quest mode card shop.

This commit is contained in:
Agetian
2014-01-13 09:46:35 +00:00
parent 0f514be363
commit 0cb7573494

View File

@@ -125,14 +125,16 @@ public final class QuestUtilCards {
}
for (String landName : MagicColor.Constant.BASIC_LANDS) {
pool.add(db.getCard(landName, landCode), nBasic);
for (int i=0; i<nBasic; i++) {
pool.add(db.getCard(landName, landCode, -1), 1);
}
}
if (!snowLandCodes.isEmpty()) {
String snowLandCode = Aggregates.random(snowLandCodes);
for (String landName : MagicColor.Constant.SNOW_LANDS) {
pool.add(db.getCard(landName, snowLandCode), nSnow);
pool.add(db.getCard(landName, snowLandCode, -1), nSnow);
}
}