forked from External/mage
fixes a few bugs along the way: [[Pilgrim and Justice]] & [[Pilgrim of Virue]] were incorrectly adding a "to you" to their damage clause. [[Ajani's Aid]] was improperly a one-use prevention effect. [[Story Circle]] and [[Prismatic Circle]] have not been refactor as it is not currently possible to have a proper filter for them. Would require a FilterSource with a 4-argument match most likely.
38 lines
No EOL
1.1 KiB
Java
38 lines
No EOL
1.1 KiB
Java
|
|
package mage.cards.r;
|
|
|
|
import mage.abilities.effects.common.PreventNextDamageFromChosenSourceEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.Duration;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author Quercitron
|
|
*/
|
|
public final class ReverseDamage extends CardImpl {
|
|
|
|
public ReverseDamage(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{W}{W}");
|
|
|
|
|
|
// The next time a source of your choice would deal damage to you this turn, prevent that damage. You gain life equal to the damage prevented this way.
|
|
this.getSpellAbility().addEffect(
|
|
new PreventNextDamageFromChosenSourceEffect(
|
|
Duration.EndOfTurn, true,
|
|
PreventNextDamageFromChosenSourceEffect.ON_PREVENT_YOU_GAIN_THAT_MUCH_LIFE
|
|
)
|
|
);
|
|
}
|
|
|
|
private ReverseDamage(final ReverseDamage card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public ReverseDamage copy() {
|
|
return new ReverseDamage(this);
|
|
}
|
|
} |