Added timmermac's Burning Elves deck (with modifications) as quest 15.

This commit is contained in:
jendave
2011-08-06 04:52:42 +00:00
parent 2e404a2631
commit 40ed439b1b
4 changed files with 53 additions and 0 deletions

View File

@@ -445,6 +445,24 @@ public class QuestUtil {
qa.setCardRewardList(pack.getRare(4));
}
else if (id == 15) // Don't Play With Matches
{
CardList humanList = new CardList();
String cardsInPlay[] = {"Mudbutton Torchrunner", "Scuzzback Scrapper"};
for (int i = 0; i < 2; i ++)
{
Card c = AllZone.CardFactory.getCard(cardsInPlay[i], Constant.Player.Human);
humanList.add(c);
}
qa.setHuman(humanList);
qa.addCompy("Heedless One");
qa.addCompy("Norwood Archers");
qa.addCompy("Wildslayer Elves");
qa.setCardRewardList(pack.getRare(4, 5));
}
}