- Fox for Goblin Charbelcher counting the Land card revealed

This commit is contained in:
jendave
2011-08-06 13:38:21 +00:00
parent 8992d868ec
commit 4f73f22443

View File

@@ -8245,7 +8245,11 @@ public class CardFactory implements NewConstants {
if(crd.isLand() || count == topOfLibrary.size()) {
c = crd;
damage = count;
if(crd.getName().equals("Mountain")) damage = damage * 2;
if (crd.isLand())
damage--;
if(crd.getName().equals("Mountain"))
damage *= 2;
}
}//while
AllZone.Display.getChoiceOptional("Revealed cards:", revealed.toArray());