- The New Deck - Sealed card pool now contains only 20 each of the 5 Basic Lands and an additional 20 each of the 5 new Snow-Covered Basic Lands.

This commit is contained in:
jendave
2011-08-06 03:07:07 +00:00
parent 32d655ceb6
commit 1018f9dc9c
2 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
program/mail=mtgerror@yahoo.com
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
program/version=Forge -- official beta: 09/12/14, SVN revision: 234
program/version=Forge -- official beta: 09/12/14, SVN revision: 235
tokens--file=AllTokens.txt

View File

@@ -94,12 +94,17 @@ public class ReadBoosterPack implements NewConstants {
for(int i = 0; i < 5; i++)
list.addAll(getBoosterPack().toArray());
for(int i = 0; i < 40; i++) {
for(int i = 0; i < 20; i++) {
list.add(AllZone.CardFactory.getCard("Forest", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Island", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Plains", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Mountain", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Swamp", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Snow-Covered Forest", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Snow-Covered Island", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Snow-Covered Plains", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Snow-Covered Mountain", Constant.Player.Human));
list.add(AllZone.CardFactory.getCard("Snow-Covered Swamp", Constant.Player.Human));
}
for(int i = 0; i < 4; i++)