1. fixed comment for Elspeth, Knight Errant

2. Jace Mind Sculptor was missing stack description for 4th ability
This commit is contained in:
jendave
2011-08-06 05:16:15 +00:00
parent a6f034a1af
commit 456ff467ec

View File

@@ -10,7 +10,7 @@ class CardFactory_Planeswalkers {
public static Card getCard(final Card card, String cardName, String owner) {
//*************** START *********** START **************************
if(cardName.equals("Elspeth, Knight-Errant")) {
//computer only plays ability 1 and 3, gain life and put X\X token into play
//computer only plays ability 1 and 3, put 1/1 Soldier in play and make everything indestructible
final int turn[] = new int[1];
turn[0] = -1;
@@ -2899,6 +2899,8 @@ class CardFactory_Planeswalkers {
}
};
ability4.setDescription("-12: Exile all cards from target player's library, then that player shuffles his or her hand into his or her library.");
ability4.setStackDescription(card2
+ " - Exile all cards from target player's library, then that player shuffles his or her hand into his or her library.");
ability4.setBeforePayMana(CardFactoryUtil.input_targetPlayer(ability4));
ability4.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
card2.addSpellAbility(ability4);