Added special quest deck quest19.

This commit is contained in:
jendave
2011-08-06 05:00:12 +00:00
parent 48d7b9e9de
commit 51a4e2696e
4 changed files with 54 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -230,6 +230,7 @@ res/quest/decks/quest15.dck -text
res/quest/decks/quest16.dck -text
res/quest/decks/quest17.dck -text
res/quest/decks/quest18.dck -text
res/quest/decks/quest19.dck -text
res/quest/decks/quest2.dck -text
res/quest/decks/quest3.dck -text
res/quest/decks/quest4.dck -text

View File

@@ -0,0 +1,22 @@
quest19
[general]
constructed
[main]
4 Birds of Paradise
3 Armistice
1 Mox Emerald
6 Plains
4 Temple Garden
4 Utopia Tree
3 Door to Nothingness
4 Darksteel Ingot
3 Harmonize
1 Enlightened Tutor
6 Forest
4 Peacekeeper
4 Gemhide Sliver
4 Magus of the Moat
1 Mox Pearl
4 Eladamri's Call
4 Savannah
[sideboard]

View File

@@ -178,4 +178,14 @@ Five random rares
300
noIcon
19
The Desert Caravan
A caravan is transporting silk across the desert. While setting up camp for the night you are attacked by the thieves. Defend yourself.
Hard
Not Repeatable
50
Five random rares
300
noIcon
End

View File

@@ -526,6 +526,27 @@ public class QuestUtil {
qa.setCardRewardList(pack.getRare(5));
}
else if (id == 19) // The Desert Caravan
{
CardList humanList = new CardList();
String humanSetupCards[] = {"Spidersilk Net", "Dromad Purebred"};
for (int i = 0; i < 2; i ++)
{
Card c = AllZone.CardFactory.getCard(humanSetupCards[i], Constant.Player.Human);
humanList.add(c);
}
qa.setHuman(humanList);
String compySetupCards[] = {"Ambush Party", "Ambush Party", "Gnat Alley Creeper", "Ambush Party", "Ambush Party"};
for (int i = 0; i < 5; i ++)
{
qa.addCompy(compySetupCards[i]);
}
qa.setCardRewardList(pack.getRare(5));
}
}