1) Added quest11.dck to the /res/quest/decks/ folder.

2) Added this deck's info to the quests.txt file.
3) And a few lines of code to provide the reward and start in play cards.
4) A LQ pic url.
This commit is contained in:
jendave
2011-08-06 04:35:29 +00:00
parent 2ac48e0471
commit 726c752b96
5 changed files with 73 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -192,6 +192,7 @@ res/quest/decks/Wyatt[!!-~]Earp[!!-~]2.dck -text
res/quest/decks/Wyatt[!!-~]Earp[!!-~]3.dck -text
res/quest/decks/quest1.dck -text
res/quest/decks/quest10.dck -text
res/quest/decks/quest11.dck -text
res/quest/decks/quest2.dck -text
res/quest/decks/quest3.dck -text
res/quest/decks/quest4.dck -text

View File

@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
broodwarden.jpg http://www.wizards.com/global/images/magic/general/broodwarden.jpg
kargan_dragonlord.jpg http://www.wizards.com/global/images/magic/general/kargan_dragonlord.jpg
expedition_map.jpg http://www.wizards.com/global/images/magic/general/expedition_map.jpg
valakut_the_molten_pinnacle.jpg http://www.wizards.com/global/images/magic/general/valakut_the_molten_pinnacle.jpg

View File

@@ -0,0 +1,49 @@
quest11
[general]
constructed
[main]
1 Isamaru, Hound of Konda
4 Plateau
1 Radiant, Archangel
4 Taiga
1 Zuo Ci, the Mocking Sage
1 Mox Emerald
1 Rakka Mar
1 Concordant Crossroads
1 Meng Huo, Barbarian King
1 Jeska, Warrior Adept
2 Loyal Retainers
1 Jacques le Vert
1 Tolsimir Wolfblood
1 Squee, Goblin Nabob
1 Kaysa
1 Earthcraft
1 Mox Pearl
1 Mikokoro, Center of the Sea
1 Eladamri, Lord of Leaves
1 Eladamri's Call
1 Mirri, Cat Warrior
1 Exploration
4 Savannah
1 Gaddock Teeg
1 Honden of Cleansing Fire
1 Pianna, Nomad Captain
1 Azusa, Lost but Seeking
3 Plains
1 Captain Sisay
1 Okina, Temple to the Grandfathers
1 Honden of Infinite Rage
1 Reki, the History of Kamigawa
1 Goblin Assault
1 Umezawa's Jitte
3 Forest
1 Fecundity
1 Mox Ruby
1 Tuktuk the Explorer
1 Zuberi, Golden Feather
1 Fastbond
1 Honden of Life's Web
1 Kongming, "Sleeping Dragon"
3 Mountain
1 Tuknir Deathlock
[sideboard]

View File

@@ -98,4 +98,14 @@ Four black rares
200
blackOrbSmall.png
11
The King's Contest
The king is holding a contest. You are invited to participate and compete against other legends of this era.
Hard
Not Repeatable
50
Three random rares
150
noIcon
End

View File

@@ -384,6 +384,18 @@ public class QuestUtil {
qa.setCardRewardList(pack.getRare(4, 2));
}
else if (id == 11) // The King's Contest
{
CardList humanList = new CardList();
Card c = AllZone.CardFactory.getCard("Seal of Cleansing", Constant.Player.Human);
humanList.add(c);
qa.setHuman(humanList);
qa.addCompy("Loyal Retainers");
qa.setCardRewardList(pack.getRare(3));
}
}