- 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

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));
}
}