- Replaced the black and green dungeon special quests.

This commit is contained in:
Sloth
2011-08-23 18:45:47 +00:00
parent a76d56e40c
commit d74f9e6358
3 changed files with 105 additions and 38 deletions

View File

@@ -2,20 +2,28 @@ quest3
[general] [general]
constructed constructed
[main] [main]
4 Dark Ritual
2 Anowon, the Ruin Sage
3 Gatekeeper of Malakir
2 Phyrexian Arena
20 Swamp 20 Swamp
4 Douse in Gloom 4 Charcoal Diamond
2 Pulse Tracker 1 Armillary Sphere
1 Shizo, Death's Storehouse 1 Pilgrim's Eye
4 Malakir Bloodwitch 1 Cabal Torturer
4 Vampire Nighthawk 1 Caustic Crawler
4 Bad Moon 3 Consumptive Goo
3 Bloodghast 1 Disciple of Tevesh Szat
1 Mox Jet 1 Grandmother Sengir
4 Doom Blade 3 Weed-Pruner Poplar
1 Mirri the Cursed 1 Corrosive Mentor
1 Volrath's Stronghold 4 Creakwood Liege
1 Akroma's Memorial
4 Dross Golem
4 Scornful Egotist
1 Viridian Longbow
1 Rod of Ruin
1 Avatar of Woe
1 Delraich
1 Spirit of the Night
1 Stillmoon Cavalier
2 Pennon Blade
1 Beacon of Unrest
1 Zombify
[sideboard] [sideboard]

View File

@@ -2,22 +2,66 @@ quest5
[general] [general]
constructed constructed
[main] [main]
2 Wellwisher 33 Forest
3 Norwood Archers 1 Alpha Tyrranax
1 Mox Emerald 1 Avatar of Might
3 Immaculate Magistrate 1 Barbtooth Wurm
3 Sylvan Messenger 1 Body of Jukai
2 Nevinyrral's Disk 1 Carnage Wurm
1 Wolf-Skull Shaman 1 Crash of Rhinos
3 Harmonize 1 Craw Giant
3 Overrun 1 Craw Wurm
19 Forest 1 Crush of Wurms
1 Winnower Patrol 1 Desert Twister
3 Timberwatch Elf 1 Duskdale Wurm
3 Gaea's Anthem 1 Engulfing Slagwurm
2 Naturalize 1 Enormous Baloth
2 Moss Diamond 1 Epic Proportions
4 Llanowar Elves 1 Fangren Marauder
3 Imperious Perfect 1 Fangren Pathcutter
2 Essence Warden 1 Feral Thallid
1 Gaea's Revenge
1 Gang of Elk
1 Giant Warthog
1 Goliath Spider
1 Havenwood Wurm
1 Hornet Queen
1 Hydra Omnivore
1 Jedit Ojanen of Efrava
1 Jugan, the Rising Star
1 Kalonian Behemoth
1 Living Hive
1 Loamdragger Giant
1 Lurking Predators
1 Maul Splicer
1 Moss Kami
1 Mythic Proportions
1 Needleshot Gourna
1 Nightsoil Kami
1 Oakgnarl Warrior
1 Paleoloth
1 Pelakka Wurm
1 Penumbra Wurm
1 Phantom Wurm
1 Plated Slagwurm
1 Praetor's Counsel
1 Primalcrux
1 Primeval Titan
1 Primordial Sage
1 Quilled Slagwurm
1 Rampaging Baloths
1 Regal Force
1 Rootbreaker Wurm
1 Scaled Wurm
1 Stone-Tongue Basilisk
1 Symbiotic Beast
1 Symbiotic Wurm
1 Tangle Spider
1 Terra Stomper
1 Thousand-legged Kami
1 Vastwood Gorger
1 Verdant Force
1 Whiptail Wurm
1 Woodfall Primus
1 Yavimaya Wurm
[sideboard] [sideboard]

View File

@@ -121,6 +121,8 @@ public class QuestUtil {
qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Blue)); qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Blue));
} else if (id == 3) //Black Dungeon } else if (id == 3) //Black Dungeon
{ {
qa.addCompy("Infernal Genesis");
qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Black)); qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Black));
} else if (id == 4) //Red Dungeon } else if (id == 4) //Red Dungeon
{ {
@@ -130,6 +132,19 @@ public class QuestUtil {
qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Red)); qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Red));
} else if (id == 5) //Green Dungeon } else if (id == 5) //Green Dungeon
{ {
CardList humanList = new CardList();
Card c = AllZone.getCardFactory().getCard("Defense of the Heart", AllZone.getHumanPlayer());
c.setCurSetCode(c.getMostRecentSet());
c.setImageFilename(CardUtil.buildFilename(c));
humanList.add(c);
qa.setHuman(humanList);
qa.addCompy("Eladamri's Vineyard");
qa.addCompy("Upwelling");
qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Green)); qa.setCardRewardList(pack.generateCards(cards, 3, Constant.Rarity.Rare, Constant.Color.Green));
} else if (id == 6) //Colorless Dungeon } else if (id == 6) //Colorless Dungeon
{ {