mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
add Sphinx of Magosi from Rise of the Eldrazi (requested by: tchiseen)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user