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