diff --git a/res/card-pictures.txt b/res/card-pictures.txt index c5d2eedf64c..e3ebe7b0203 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -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 diff --git a/res/cards.txt b/res/cards.txt index 24fa4ac0d7a..1ac222a43d7 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -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 diff --git a/src/forge/CardFactory_Creatures.java b/src/forge/CardFactory_Creatures.java index 0263f41133a..711ee8e36f7 100644 --- a/src/forge/CardFactory_Creatures.java +++ b/src/forge/CardFactory_Creatures.java @@ -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) {