From 1018f9dc9c950f81e77276a45ea8201c693a3090 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 03:07:07 +0000 Subject: [PATCH] - 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. --- res/main.properties | 2 +- src/forge/ReadBoosterPack.java | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/res/main.properties b/res/main.properties index 20b9c884e9f..598dfc63d52 100644 --- a/res/main.properties +++ b/res/main.properties @@ -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 diff --git a/src/forge/ReadBoosterPack.java b/src/forge/ReadBoosterPack.java index 80c5b551bba..f5801007128 100644 --- a/src/forge/ReadBoosterPack.java +++ b/src/forge/ReadBoosterPack.java @@ -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++)