forked from External/mage
40 lines
1.3 KiB
Java
40 lines
1.3 KiB
Java
|
|
package mage.cards.r;
|
|
|
|
import java.util.UUID;
|
|
|
|
import mage.abilities.effects.common.DoIfClashWonEffect;
|
|
import mage.abilities.effects.common.ReturnToHandSpellEffect;
|
|
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.filter.StaticFilters;
|
|
import mage.filter.common.FilterCreatureCard;
|
|
import mage.target.common.TargetCardInGraveyard;
|
|
|
|
/**
|
|
*
|
|
* @author LoneFox
|
|
*/
|
|
public final class ReviveTheFallen extends CardImpl {
|
|
|
|
public ReviveTheFallen(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{1}{B}");
|
|
|
|
// Return target creature card from a graveyard to its owner's hand.
|
|
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
|
|
this.getSpellAbility().addTarget(new TargetCardInGraveyard(StaticFilters.FILTER_CARD_CREATURE_A_GRAVEYARD));
|
|
// Clash with an opponent. If you win, return Revive the Fallen to its owner's hand.
|
|
this.getSpellAbility().addEffect(new DoIfClashWonEffect(ReturnToHandSpellEffect.getInstance()));
|
|
}
|
|
|
|
private ReviveTheFallen(final ReviveTheFallen card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public ReviveTheFallen copy() {
|
|
return new ReviveTheFallen(this);
|
|
}
|
|
}
|