mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
Added special quest deck quest19.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -230,6 +230,7 @@ res/quest/decks/quest15.dck -text
|
||||
res/quest/decks/quest16.dck -text
|
||||
res/quest/decks/quest17.dck -text
|
||||
res/quest/decks/quest18.dck -text
|
||||
res/quest/decks/quest19.dck -text
|
||||
res/quest/decks/quest2.dck -text
|
||||
res/quest/decks/quest3.dck -text
|
||||
res/quest/decks/quest4.dck -text
|
||||
|
||||
22
res/quest/decks/quest19.dck
Normal file
22
res/quest/decks/quest19.dck
Normal file
@@ -0,0 +1,22 @@
|
||||
quest19
|
||||
[general]
|
||||
constructed
|
||||
[main]
|
||||
4 Birds of Paradise
|
||||
3 Armistice
|
||||
1 Mox Emerald
|
||||
6 Plains
|
||||
4 Temple Garden
|
||||
4 Utopia Tree
|
||||
3 Door to Nothingness
|
||||
4 Darksteel Ingot
|
||||
3 Harmonize
|
||||
1 Enlightened Tutor
|
||||
6 Forest
|
||||
4 Peacekeeper
|
||||
4 Gemhide Sliver
|
||||
4 Magus of the Moat
|
||||
1 Mox Pearl
|
||||
4 Eladamri's Call
|
||||
4 Savannah
|
||||
[sideboard]
|
||||
@@ -178,4 +178,14 @@ Five random rares
|
||||
300
|
||||
noIcon
|
||||
|
||||
19
|
||||
The Desert Caravan
|
||||
A caravan is transporting silk across the desert. While setting up camp for the night you are attacked by the thieves. Defend yourself.
|
||||
Hard
|
||||
Not Repeatable
|
||||
50
|
||||
Five random rares
|
||||
300
|
||||
noIcon
|
||||
|
||||
End
|
||||
@@ -526,6 +526,27 @@ public class QuestUtil {
|
||||
|
||||
qa.setCardRewardList(pack.getRare(5));
|
||||
}
|
||||
else if (id == 19) // The Desert Caravan
|
||||
{
|
||||
CardList humanList = new CardList();
|
||||
String humanSetupCards[] = {"Spidersilk Net", "Dromad Purebred"};
|
||||
|
||||
for (int i = 0; i < 2; i ++)
|
||||
{
|
||||
Card c = AllZone.CardFactory.getCard(humanSetupCards[i], Constant.Player.Human);
|
||||
humanList.add(c);
|
||||
}
|
||||
qa.setHuman(humanList);
|
||||
|
||||
String compySetupCards[] = {"Ambush Party", "Ambush Party", "Gnat Alley Creeper", "Ambush Party", "Ambush Party"};
|
||||
|
||||
for (int i = 0; i < 5; i ++)
|
||||
{
|
||||
qa.addCompy(compySetupCards[i]);
|
||||
}
|
||||
|
||||
qa.setCardRewardList(pack.getRare(5));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user