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

@@ -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
sphinx_of_magosi.jpg http://www.wizards.com/global/images/magic/general/sphinx_of_magosi.jpg
time_of_heroes.jpg http://www.wizards.com/global/images/magic/general/time_of_heroes.jpg
lifetap.jpg http://www.wizards.com/global/images/magic/general/lifetap.jpg
lifeblood.jpg http://www.wizards.com/global/images/magic/general/lifeblood.jpg

View File

@@ -1,3 +1,10 @@
Sphinx of Magosi
3 U U U
Creature Sphinx
2 U: Draw a card, then put a +1/+1 counter on Sphinx of Magosi.
6/6
Flying
Kozilek's Predator
3 G
Creature Eldrazi Drone

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) {