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

1
.gitattributes vendored
View File

@@ -202,6 +202,7 @@ res/quest/decks/quest11.dck -text
res/quest/decks/quest12.dck -text res/quest/decks/quest12.dck -text
res/quest/decks/quest13.dck -text res/quest/decks/quest13.dck -text
res/quest/decks/quest14.dck -text res/quest/decks/quest14.dck -text
res/quest/decks/quest15.dck -text
res/quest/decks/quest2.dck -text res/quest/decks/quest2.dck -text
res/quest/decks/quest3.dck -text res/quest/decks/quest3.dck -text
res/quest/decks/quest4.dck -text res/quest/decks/quest4.dck -text

View File

@@ -0,0 +1,24 @@
quest15
[general]
constructed
[main]
4 Plateau
4 Druid of the Anima
4 Taiga
1 Mox Emerald
3 Temple Garden
3 Glorious Anthem
3 Stomping Ground
4 Elvish Champion
4 Lightning Bolt
1 Mox Ruby
1 Mox Pearl
3 Gaea's Anthem
4 Blaze
3 Fireball
4 Savannah
3 Beastmaster Ascension
3 Keen-Eyed Archers
4 Elvish Harbinger
4 Llanowar Elves
[sideboard]

View File

@@ -138,4 +138,14 @@ Four random rares
250 250
noIcon noIcon
15
Don't Play With Matches
The goblins are battling the elves. Those pesky elves, will they ever learn. Do not play with fire!
Hard
Not Repeatable
50
Four red rares
200
noIcon
End End

View File

@@ -445,6 +445,24 @@ public class QuestUtil {
qa.setCardRewardList(pack.getRare(4)); 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));
}
} }