- 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
3 Quirion Dryad
2 Obelisk of Naya
2 Tithe
1 Tithe
2 Mungha Wurm
4 Elfhame Palace
2 Llanowar Behemoth
@@ -29,4 +29,5 @@ constructed
1 Heroes' Reunion
1 Violent Outburst
1 Artifact Mutation
1 Tremble
[sideboard]

View File

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

View File

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

View File

@@ -259,7 +259,8 @@ public class AbilityFactory_Sacrifice {
CardList computerList = AllZoneUtil.getPlayerCardsInPlay(AllZone.ComputerPlayer);
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;
}
}