mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
Added timmermac's Burning Elves deck (with modifications) as quest 15.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -202,6 +202,7 @@ res/quest/decks/quest11.dck -text
|
||||
res/quest/decks/quest12.dck -text
|
||||
res/quest/decks/quest13.dck -text
|
||||
res/quest/decks/quest14.dck -text
|
||||
res/quest/decks/quest15.dck -text
|
||||
res/quest/decks/quest2.dck -text
|
||||
res/quest/decks/quest3.dck -text
|
||||
res/quest/decks/quest4.dck -text
|
||||
|
||||
24
res/quest/decks/quest15.dck
Normal file
24
res/quest/decks/quest15.dck
Normal 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]
|
||||
@@ -138,4 +138,14 @@ Four random rares
|
||||
250
|
||||
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
|
||||
@@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user