Created an empty card object with spell ability for Resuscitate.

This commit is contained in:
jendave
2011-08-06 04:49:35 +00:00
parent ce34cd0d61
commit 59b03dbca3

View File

@@ -3933,6 +3933,25 @@ public class CardFactory implements NewConstants {
card.addSpellAbility(spell);
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if (cardName.equals("Resuscitate")) {
/**
* This card does not work and this is a place holder.
* May require a keyword factory.
*/
final SpellAbility spell = new Spell(card) {
private static final long serialVersionUID = 2024445242584858534L;
@Override
public void resolve() {
}//resolve
};//SpellAbility
spell.setStackDescription(card.getName() + " - I do nothing but go to the graveyard.");
card.clearSpellAbility();
card.addSpellAbility(spell);
}//*************** END ************ END **************************
/*
//*************** START *********** START **************************
if(cardName.equals("Brave the Elements")