mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Added Snacko's Oath of Druids deck as quest20.
This commit is contained in:
@@ -588,6 +588,28 @@ public class QuestUtil {
|
||||
|
||||
qa.setCardRewardList(pack.getRare(5));
|
||||
}
|
||||
|
||||
else if (id == 20) // Blood Oath
|
||||
{
|
||||
CardList humanList = new CardList();
|
||||
String humanSetupCards[] = {"Counterbalance", "Hatching Plans", "Ley Druid"};
|
||||
|
||||
for (int i = 0; i < 3; i ++)
|
||||
{
|
||||
Card c = AllZone.CardFactory.getCard(humanSetupCards[i], Constant.Player.Human);
|
||||
humanList.add(c);
|
||||
}
|
||||
qa.setHuman(humanList);
|
||||
|
||||
String compySetupCards[] = {"Ior Ruin Expedition", "Oversold Cemetery", "Trapjaw Kelpie"};
|
||||
|
||||
for (int i = 0; i < 3; i ++)
|
||||
{
|
||||
qa.addCompy(compySetupCards[i]);
|
||||
}
|
||||
|
||||
qa.setCardRewardList(pack.getRare(5, 1));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user