mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Minor fix to Jace, the Mind Sculptor.
This commit is contained in:
@@ -2810,8 +2810,10 @@ class CardFactory_Planeswalkers {
|
|||||||
}//canPlay()
|
}//canPlay()
|
||||||
};
|
};
|
||||||
ability1.setDescription("+2: Look at the top card of target player's library. You may put that card on the bottom of that player's library.");
|
ability1.setDescription("+2: Look at the top card of target player's library. You may put that card on the bottom of that player's library.");
|
||||||
ability1.setStackDescription(card2
|
StringBuilder stack1 = new StringBuilder();
|
||||||
+ " - Look at the top card of target player's library. You may put that card on the bottom of that player's library.");
|
stack1.append(cardName).append(" - Look at the top card of target player's library. You may put that card on the bottom of that player's library.");
|
||||||
|
ability1.setStackDescription(stack1.toString());
|
||||||
|
|
||||||
ability1.setBeforePayMana(CardFactoryUtil.input_targetPlayer(ability1));
|
ability1.setBeforePayMana(CardFactoryUtil.input_targetPlayer(ability1));
|
||||||
ability1.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
|
ability1.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
|
||||||
card2.addSpellAbility(ability1);
|
card2.addSpellAbility(ability1);
|
||||||
@@ -2868,8 +2870,9 @@ class CardFactory_Planeswalkers {
|
|||||||
}//canPlay()
|
}//canPlay()
|
||||||
};
|
};
|
||||||
ability2.setDescription("0: Draw three cards, then put two cards from your hand on top of your library in any order.");
|
ability2.setDescription("0: Draw three cards, then put two cards from your hand on top of your library in any order.");
|
||||||
ability2.setStackDescription(card2
|
StringBuilder stack2 = new StringBuilder();
|
||||||
+ " - Draw three cards, then put two cards from your hand on top of your library in any order.");
|
stack2.append(cardName).append(" - Draw three cards, then put two cards from your hand on top of your library in any order.");
|
||||||
|
ability2.setStackDescription(stack2.toString());
|
||||||
card2.addSpellAbility(ability2);
|
card2.addSpellAbility(ability2);
|
||||||
|
|
||||||
final Ability ability3 = new Ability(card, "0") {
|
final Ability ability3 = new Ability(card, "0") {
|
||||||
@@ -2900,6 +2903,10 @@ class CardFactory_Planeswalkers {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
ability3.setDescription("-1: Return target creature to its owner's hand.");
|
ability3.setDescription("-1: Return target creature to its owner's hand.");
|
||||||
|
StringBuilder stack3 = new StringBuilder();
|
||||||
|
stack3.append(cardName).append(" - Return target creature to its owner's hand.");
|
||||||
|
ability3.setStackDescription(stack3.toString());
|
||||||
|
|
||||||
ability3.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability3));
|
ability3.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability3));
|
||||||
card2.addSpellAbility(ability3);
|
card2.addSpellAbility(ability3);
|
||||||
|
|
||||||
@@ -2946,8 +2953,10 @@ 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.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
|
StringBuilder stack4 = new StringBuilder();
|
||||||
+ " - Exile all cards from target player's library, then that player shuffles his or her hand into his or her library.");
|
stack4.append(cardName).append(" - Exile all cards from target player's library, then that player shuffles his or her hand into his or her library.");
|
||||||
|
ability4.setStackDescription(stack4.toString());
|
||||||
|
|
||||||
ability4.setBeforePayMana(CardFactoryUtil.input_targetPlayer(ability4));
|
ability4.setBeforePayMana(CardFactoryUtil.input_targetPlayer(ability4));
|
||||||
ability4.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
|
ability4.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
|
||||||
card2.addSpellAbility(ability4);
|
card2.addSpellAbility(ability4);
|
||||||
@@ -2957,6 +2966,7 @@ class CardFactory_Planeswalkers {
|
|||||||
return card2;
|
return card2;
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Sarkhan the Mad")) {
|
else if(cardName.equals("Sarkhan the Mad")) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user