diff --git a/res/quest/decks/Genghis Khan 1.dck b/res/quest/decks/Genghis Khan 1.dck index b49df99977b..812a05b1563 100644 --- a/res/quest/decks/Genghis Khan 1.dck +++ b/res/quest/decks/Genghis Khan 1.dck @@ -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] diff --git a/res/quest/decks/Genghis Khan 2.dck b/res/quest/decks/Genghis Khan 2.dck index f80284cdaf1..a38c8099896 100644 --- a/res/quest/decks/Genghis Khan 2.dck +++ b/res/quest/decks/Genghis Khan 2.dck @@ -1,28 +1,27 @@ -Genghis Khan 2 -[general] -constructed -[main] -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 -[sideboard] +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 +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] + diff --git a/res/quest/decks/Genghis Khan 3.dck b/res/quest/decks/Genghis Khan 3.dck index 44777238052..b49785bec7b 100644 --- a/res/quest/decks/Genghis Khan 3.dck +++ b/res/quest/decks/Genghis Khan 3.dck @@ -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 diff --git a/src/forge/card/abilityFactory/AbilityFactory_Sacrifice.java b/src/forge/card/abilityFactory/AbilityFactory_Sacrifice.java index 16cfcb9ee12..2cb655dc78f 100644 --- a/src/forge/card/abilityFactory/AbilityFactory_Sacrifice.java +++ b/src/forge/card/abilityFactory/AbilityFactory_Sacrifice.java @@ -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; } }