- Updated Marge Simpson 2 deck.

This commit is contained in:
jendave
2011-08-06 23:30:24 +00:00
parent fd3cbb6ca8
commit 212f6f5efb
2 changed files with 28 additions and 15 deletions

View File

@@ -2,19 +2,32 @@ Marge Simpson 2
[general] [general]
constructed constructed
[main] [main]
4 Jund Battlemage 8 Mountain
4 Rampant Growth 8 Forest
2 Solemn Simulacrum 4 Stomping Ground
12 Forest 4 Wooded Foothills
4 Kodama's Reach
4 Carven Caryatid
4 Squirrel Nest
2 Predator Dragon
1 Gorger Wurm
4 Wall of Blossoms
2 Thunder-Thrash Elder
2 Goblin Offensive
1 Dragon Broodmother 1 Dragon Broodmother
2 Thorn-Thrash Viashino 1 Predator Dragon
12 Mountain 2 Thunder-Thrash Elder
1 Skullmulcher
2 Mycoloth
1 Gorger Wurm
1 Thorn-Thrash Viashino
2 Doubling Season
1 Artifact Mutation
1 Violent Outburst
1 Squirrel Nest
1 Chatter of the Squirrel
1 Hunting Triad
2 Awakening Zone
2 Growth Spasm
1 Kozilek's Predator
2 Nest Invader
1 Ambassador Oak
1 Leyline of Vitality
1 Dragon Fodder
1 Empty the Warrens
4 Goblin Assault
3 Mogg War Marshal
2 Rukh Egg
[sideboard] [sideboard]

View File

@@ -837,7 +837,7 @@ public class CardFactory implements NewConstants {
int count = 0; int count = 0;
for(int i = 0; i < creats.size(); i++) { for(int i = 0; i < creats.size(); i++) {
Card c = creats.get(i); Card c = creats.get(i);
if(c.getNetAttack() <= 1 && c.getNetDefense() <= 2) { if(c.getNetAttack() <= 1 && c.getNetAttack()+c.getNetDefense() <= 3) {
AllZone.GameAction.sacrifice(c); AllZone.GameAction.sacrifice(c);
count++; count++;
} }