- Since all of the cards with "each player sacrifices" have remAIDeck:True, I enabled 1 for 1 (or X for X) trades for special decks.

- Updated the Genghis Khan decks.
This commit is contained in:
jendave
2011-08-06 23:29:19 +00:00
parent b7ec1e731f
commit 6ab4e710eb
4 changed files with 36 additions and 34 deletions

View File

@@ -19,7 +19,7 @@ constructed
1 Kodama's Reach 1 Kodama's Reach
3 Quirion Dryad 3 Quirion Dryad
2 Obelisk of Naya 2 Obelisk of Naya
2 Tithe 1 Tithe
2 Mungha Wurm 2 Mungha Wurm
4 Elfhame Palace 4 Elfhame Palace
2 Llanowar Behemoth 2 Llanowar Behemoth
@@ -29,4 +29,5 @@ constructed
1 Heroes' Reunion 1 Heroes' Reunion
1 Violent Outburst 1 Violent Outburst
1 Artifact Mutation 1 Artifact Mutation
1 Tremble
[sideboard] [sideboard]

View File

@@ -1,28 +1,27 @@
Genghis Khan 2 Genghis Khan 2
[general] [general]
constructed constructed
constructed
[main] [main]
4 Stomping Ground
4 Temple Garden
4 Windswept Heath
4 Wooded Foothills
3 Misty Rainforest
4 Obelisk of Naya
4 Birds of Paradise 4 Birds of Paradise
3 Obelisk of Bant 2 Druid of the Anima
4 Tropical Island 1 Noble Hierarch
2 Armageddon 1 Utopia Tree
2 Eternal Witness 3 Armageddon
2 Plains 3 Ravages of War
1 Jugan, the Rising Star 4 Tremble
2 Hedge Troll 4 Mana Tithe
3 Watchwolf 3 Terravore
3 Harmonize 3 Knight of the Reliquary
2 Forest 1 Loxodon Gatekeeper
2 Kodama's Reach 2 Akki Raider
4 Wistful Selkie 2 Roiling Terrain
2 Tithe 3 Mungha Wurm
4 Tundra
1 Serra Avenger
3 Cloudcrown Oak
4 Noble Hierarch
2 Archon of Justice
4 Savannah
2 Llanowar Behemoth
2 Mountain
2 Meadowboon
[sideboard] [sideboard]

View File

@@ -2,10 +2,11 @@ Genghis Khan 3
[general] [general]
constructed constructed
[main] [main]
3 Taiga 2 Taiga
3 Savannah 2 Savannah
4 Windswept Heath 4 Windswept Heath
4 Wooded Foothills 4 Wooded Foothills
2 Misty Rainforest
1 Mox Emerald 1 Mox Emerald
1 Mox Ruby 1 Mox Ruby
1 Mox Pearl 1 Mox Pearl
@@ -13,8 +14,8 @@ constructed
1 Mox Sapphire 1 Mox Sapphire
4 Darksteel Ingot 4 Darksteel Ingot
4 Birds of Paradise 4 Birds of Paradise
2 Druid of the Anima 1 Druid of the Anima
2 Noble Hierarch 3 Noble Hierarch
4 Armageddon 4 Armageddon
4 Ravages of War 4 Ravages of War
4 Tremble 4 Tremble

View File

@@ -259,7 +259,8 @@ public class AbilityFactory_Sacrifice {
CardList computerList = AllZoneUtil.getPlayerCardsInPlay(AllZone.ComputerPlayer); CardList computerList = AllZoneUtil.getPlayerCardsInPlay(AllZone.ComputerPlayer);
computerList = computerList.getValidCards(valid.split(","), sa.getActivatingPlayer(), sa.getSourceCard()); computerList = computerList.getValidCards(valid.split(","), sa.getActivatingPlayer(), sa.getSourceCard());
if(humanList.size() < amount || computerList.size() >= amount ) return false; //Since all of the cards have remAIDeck:True, I enabled 1 for 1 (or X for X) trades for special decks
if(humanList.size() < amount /*|| computerList.size() >= amount */) return false;
} }
} }