mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
add Sphinx of Magosi from Rise of the Eldrazi (requested by: tchiseen)
This commit is contained in:
@@ -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_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_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
|
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
|
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
|
lifetap.jpg http://www.wizards.com/global/images/magic/general/lifetap.jpg
|
||||||
lifeblood.jpg http://www.wizards.com/global/images/magic/general/lifeblood.jpg
|
lifeblood.jpg http://www.wizards.com/global/images/magic/general/lifeblood.jpg
|
||||||
|
|||||||
@@ -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
|
Kozilek's Predator
|
||||||
3 G
|
3 G
|
||||||
Creature Eldrazi Drone
|
Creature Eldrazi Drone
|
||||||
|
|||||||
@@ -17875,6 +17875,23 @@ public class CardFactory_Creatures {
|
|||||||
//ability.setStackDescription(cardName + " - Rearrange the top X cards in your library in any order.");
|
//ability.setStackDescription(cardName + " - Rearrange the top X cards in your library in any order.");
|
||||||
}//*************** END ************ END **************************
|
}//*************** 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 **************************
|
//*************** START *********** START **************************
|
||||||
if(cardName.equals("Kor Line-Slinger")) {
|
if(cardName.equals("Kor Line-Slinger")) {
|
||||||
final Ability_Tap ability = new Ability_Tap(card) {
|
final Ability_Tap ability = new Ability_Tap(card) {
|
||||||
|
|||||||
Reference in New Issue
Block a user