mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- 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:
@@ -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
|
||||
|
||||
|
||||
@@ -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++)
|
||||
|
||||
Reference in New Issue
Block a user