mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Added another quest assignment deck (very tough).
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -295,6 +295,7 @@ res/quest/decks/quest18.dck -text
|
||||
res/quest/decks/quest19.dck -text
|
||||
res/quest/decks/quest2.dck -text
|
||||
res/quest/decks/quest20.dck -text
|
||||
res/quest/decks/quest21.dck -text
|
||||
res/quest/decks/quest3.dck -text
|
||||
res/quest/decks/quest4.dck -text
|
||||
res/quest/decks/quest5.dck -text
|
||||
|
||||
@@ -8,7 +8,7 @@ Aven Trailblazer
|
||||
2 W
|
||||
Creature Bird Soldier
|
||||
Domain - Aven Trailblazer's toughness is equal to the number of basic land types among lands you control.
|
||||
2/1
|
||||
2/0
|
||||
Flying
|
||||
|
||||
Psychatog
|
||||
|
||||
31
res/quest/decks/quest21.dck
Normal file
31
res/quest/decks/quest21.dck
Normal file
@@ -0,0 +1,31 @@
|
||||
quest21
|
||||
[general]
|
||||
constructed
|
||||
[main]
|
||||
2 Underground Sea
|
||||
2 Plateau
|
||||
2 Taiga
|
||||
2 Tropical Island
|
||||
1 Tromp the Domains
|
||||
1 Sejiri Merfolk
|
||||
2 Scrubland
|
||||
2 Tundra
|
||||
2 Bayou
|
||||
2 Savannah
|
||||
3 Wandering Goblins
|
||||
3 Kird Ape
|
||||
4 Matca Rioters
|
||||
1 Aven Trailblazer
|
||||
3 Exotic Disease
|
||||
4 Tribal Flames
|
||||
2 Badlands
|
||||
1 Forest
|
||||
4 Allied Strategies
|
||||
3 Loam Lion
|
||||
4 Collective Restraint
|
||||
2 Volcanic Island
|
||||
4 Wild Nacatl
|
||||
1 Legacy Weapon
|
||||
1 Mountain
|
||||
2 Wandering Stream
|
||||
[sideboard]
|
||||
@@ -198,4 +198,14 @@ Five colorless rares
|
||||
300
|
||||
Blood Oath.jpg
|
||||
|
||||
21
|
||||
Private Domain
|
||||
During your travels, you accidentally stumble upon the domain of an evil, powerful wizard. A fight to the death ensues.
|
||||
Expert
|
||||
Not Repeatable
|
||||
120
|
||||
Six random rares
|
||||
500
|
||||
blank.jpg
|
||||
|
||||
End
|
||||
@@ -610,6 +610,22 @@ public class QuestUtil {
|
||||
|
||||
qa.setCardRewardList(pack.getRare(5, 1));
|
||||
}
|
||||
|
||||
else if (id == 21) // Private Domain
|
||||
{
|
||||
CardList humanList = new CardList();
|
||||
|
||||
humanList.add(AllZone.CardFactory.getCard("Strip Mine", Constant.Player.Human));
|
||||
|
||||
qa.setHuman(humanList);
|
||||
|
||||
String compySetupCards[] = {"Plains", "Island", "Swamp", "Mountain", "Forest"};
|
||||
|
||||
for (int i = 0; i < 5; i ++)
|
||||
qa.addCompy(compySetupCards[i]);
|
||||
|
||||
qa.setCardRewardList(pack.getRare(6));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user