- Added another quest assignment deck (very tough).

This commit is contained in:
jendave
2011-08-06 05:18:54 +00:00
parent b8f9d1ed6e
commit dd53fe2d7f
5 changed files with 59 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -295,6 +295,7 @@ res/quest/decks/quest18.dck -text
res/quest/decks/quest19.dck -text
res/quest/decks/quest2.dck -text
res/quest/decks/quest20.dck -text
res/quest/decks/quest21.dck -text
res/quest/decks/quest3.dck -text
res/quest/decks/quest4.dck -text
res/quest/decks/quest5.dck -text

View File

@@ -8,7 +8,7 @@ Aven Trailblazer
2 W
Creature Bird Soldier
Domain - Aven Trailblazer's toughness is equal to the number of basic land types among lands you control.
2/1
2/0
Flying
Psychatog

View File

@@ -0,0 +1,31 @@
quest21
[general]
constructed
[main]
2 Underground Sea
2 Plateau
2 Taiga
2 Tropical Island
1 Tromp the Domains
1 Sejiri Merfolk
2 Scrubland
2 Tundra
2 Bayou
2 Savannah
3 Wandering Goblins
3 Kird Ape
4 Matca Rioters
1 Aven Trailblazer
3 Exotic Disease
4 Tribal Flames
2 Badlands
1 Forest
4 Allied Strategies
3 Loam Lion
4 Collective Restraint
2 Volcanic Island
4 Wild Nacatl
1 Legacy Weapon
1 Mountain
2 Wandering Stream
[sideboard]

View File

@@ -198,4 +198,14 @@ Five colorless rares
300
Blood Oath.jpg
21
Private Domain
During your travels, you accidentally stumble upon the domain of an evil, powerful wizard. A fight to the death ensues.
Expert
Not Repeatable
120
Six random rares
500
blank.jpg
End

View File

@@ -610,6 +610,22 @@ public class QuestUtil {
qa.setCardRewardList(pack.getRare(5, 1));
}
else if (id == 21) // Private Domain
{
CardList humanList = new CardList();
humanList.add(AllZone.CardFactory.getCard("Strip Mine", Constant.Player.Human));
qa.setHuman(humanList);
String compySetupCards[] = {"Plains", "Island", "Swamp", "Mountain", "Forest"};
for (int i = 0; i < 5; i ++)
qa.addCompy(compySetupCards[i]);
qa.setCardRewardList(pack.getRare(6));
}
}