Added quest22.

This commit is contained in:
jendave
2011-08-06 05:22:34 +00:00
parent 52ebe45b12
commit 5218e6be5c
6 changed files with 45 additions and 3 deletions

1
.gitattributes vendored
View File

@@ -285,6 +285,7 @@ res/quest/decks/Wolverine[!!-~]3.dck -text
res/quest/decks/Wyatt[!!-~]Earp[!!-~]1.dck -text
res/quest/decks/Wyatt[!!-~]Earp[!!-~]2.dck -text
res/quest/decks/Wyatt[!!-~]Earp[!!-~]3.dck -text
res/quest/decks/quest[!!-~]22.dck -text
res/quest/decks/quest1.dck -text
res/quest/decks/quest10.dck -text
res/quest/decks/quest11.dck -text

View File

@@ -0,0 +1,14 @@
quest 22
[general]
constructed
[main]
6 Swamp
4 Underground Sea
4 Jwar Isle Refuge
4 Frost Marsh
4 Watery Grave
4 Fabricate
1 Mystical Tutor
4 Thrumming Stone
29 Relentless Rats
[sideboard]

View File

@@ -59,7 +59,6 @@ Neo 3
Newton 3
Pebbles Flintstone 3
Picard 3
Pied Piper of Hamelin 3
Pinky and the Brain 3
Professor X 3
R2-D2 3

View File

@@ -208,4 +208,14 @@ Six random rares
500
Private Domain.jpg
22
The Pied Piper
A mysterious man threatens to flood the land with a relentless stream of hungry rats. Cross his plan before it's too late.
Hard
Not Repeatable
40
three random rares
150
Dungeon Crawling Black.jpg
End

View File

@@ -563,8 +563,6 @@ public class Gui_Quest extends JFrame implements NewConstants{
sb.append("\r\n");
sb.append("Picard 3 hard UWG Elf deck similar to Morpheus but also has flying elves");
sb.append("\r\n");
sb.append("Pied Piper of Hamelin 3 hard Thrumming Stone and Relentless Rats (nothing else)");
sb.append("\r\n");
sb.append("Pinky and the Brain 3 hard Royal Assassin, WoG + Damnation, Liliana Vess, Beacon of Unrest");
sb.append("\r\n");
sb.append("Professor X 3 hard Master of Etherium + Vedalken Archmage and many artifacts");

View File

@@ -758,6 +758,26 @@ public class QuestUtil {
qa.setCardRewardList(pack.getRare(6));
}
else if (id == 22) // Pied Piper
{
CardList humanList = new CardList();
String humanSetupCards[] = {"Volunteer Militia", "Land Tax", "Elvish Farmer", "An-Havva Township"};
for (int i = 0; i < 4; i ++)
{
Card c = AllZone.CardFactory.getCard(humanSetupCards[i], Constant.Player.Human);
humanList.add(c);
}
qa.setHuman(humanList);
String compySetupCards[] = {"Darksteel Citadel", "Relentless Rats"};
for (int i = 0; i < 2; i ++)
qa.addCompy(compySetupCards[i]);
qa.setCardRewardList(pack.getRare(3));
}
}