add Sphinx of Magosi from Rise of the Eldrazi (requested by: tchiseen)

This commit is contained in:
jendave
2011-08-06 04:23:21 +00:00
parent f02fd5c0fd
commit 1040fed7b5
3 changed files with 25 additions and 0 deletions

View File

@@ -17875,6 +17875,23 @@ public class CardFactory_Creatures {
//ability.setStackDescription(cardName + " - Rearrange the top X cards in your library in any order.");
}//*************** END ************ END **************************
//*************** START *********** START **************************
if(cardName.equals("Sphinx of Magosi")) {
/*
* 2 U: Draw a card, then put a +1/+1 counter on Sphinx of Magosi.
*/
final SpellAbility ability = new Ability(card, "2 U") {
@Override
public void resolve() {
final String player = card.getController();
AllZone.GameAction.drawCards(player, 1);
card.addCounter(Counters.P1P1, 1);
}
};
card.addSpellAbility(ability);
ability.setStackDescription(cardName+" - add a +1+1 counter and draw a card.");
}//*************** END ************ END **************************
//*************** START *********** START **************************
if(cardName.equals("Kor Line-Slinger")) {
final Ability_Tap ability = new Ability_Tap(card) {